mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-11-16 07:47:35 +01:00
Update version
This commit is contained in:
parent
bb35f92416
commit
4d65cf61c5
3 changed files with 11 additions and 6 deletions
|
@ -1,3 +1,8 @@
|
|||
3.1.2 - 24/02/2016
|
||||
Fixed:
|
||||
- AttributeError: LooseVersion instance has no attribute 'version'
|
||||
- Remove double code
|
||||
|
||||
3.1.1 - 23/02/2016
|
||||
Added:
|
||||
- Feature: don't downgrade packages, setting via configuration file
|
||||
|
|
10
README.rst
10
README.rst
|
@ -20,7 +20,7 @@
|
|||
:target: https://github.com/dslackw/slpkg/issues
|
||||
|
||||
|
||||
Slpkg v3.1.1
|
||||
Slpkg v3.1.2
|
||||
============
|
||||
|
||||
|
|
||||
|
@ -79,8 +79,8 @@ Download latest release:
|
|||
|
||||
Required root privileges
|
||||
|
||||
$ tar xvf slpkg-3.1.1.tar.gz
|
||||
$ cd slpkg-3.1.1
|
||||
$ tar xvf slpkg-3.1.2.tar.gz
|
||||
$ cd slpkg-3.1.2
|
||||
$ ./install.sh
|
||||
|
||||
Installed as Slackware package
|
||||
|
@ -111,9 +111,9 @@ Using pip:
|
|||
|
||||
Binary packages:
|
||||
|
||||
Slackware: `slpkg-3.1.1-i486-1_dsw.txz <https://github.com/dslackw/slpkg/releases/download/v3.1.1/slpkg-3.1.1-i486-1_dsw.txz>`_
|
||||
Slackware: `slpkg-3.1.2-i486-1_dsw.txz <https://github.com/dslackw/slpkg/releases/download/v3.1.2/slpkg-3.1.2-i486-1_dsw.txz>`_
|
||||
|
||||
Slackware64: `slpkg-3.1.1-x86_64-1_dsw.txz <https://github.com/dslackw/slpkg/releases/download/v3.1.1/slpkg-3.1.1-x86_64-1_dsw.txz>`_
|
||||
Slackware64: `slpkg-3.1.2-x86_64-1_dsw.txz <https://github.com/dslackw/slpkg/releases/download/v3.1.2/slpkg-3.1.2-x86_64-1_dsw.txz>`_
|
||||
|
||||
|
||||
Optional dependencies
|
||||
|
|
|
@ -77,7 +77,7 @@ class MetaData(object):
|
|||
|
||||
__all__ = "slpkg"
|
||||
__author__ = "dslackw"
|
||||
__version_info__ = (3, 1, 1)
|
||||
__version_info__ = (3, 1, 2)
|
||||
__version__ = "{0}.{1}.{2}".format(*__version_info__)
|
||||
__license__ = "GNU General Public License v3 (GPLv3)"
|
||||
__email__ = "d.zlatanidis@gmail.com"
|
||||
|
|
Loading…
Reference in a new issue