Update version

This commit is contained in:
Dimitris Zlatanidis 2015-11-20 22:38:44 +02:00
parent 1d1f79d4b5
commit 40350b4c5e
3 changed files with 10 additions and 6 deletions

View file

@ -1,3 +1,7 @@
3.0.2 - 19/11/2015
Fixed:
- Convert string to float when try to remove packages #52
3.0.1 - 12/11/2015
Added:
- Option "--download-only" to download packages with all dependencies without

View file

@ -20,7 +20,7 @@
:target: https://github.com/dslackw/slpkg/issues
Slpkg v3.0.1
Slpkg v3.0.2
============
|
@ -82,8 +82,8 @@ Download latest release:
Required root privileges
$ tar xvf slpkg-3.0.1.tar.gz
$ cd slpkg-3.0.1
$ tar xvf slpkg-3.0.2.tar.gz
$ cd slpkg-3.0.2
$ ./install.sh
Installed as Slackware package
@ -114,9 +114,9 @@ Using pip:
Binary packages:
Slackware: `slpkg-3.0.1-i486-1_dsw.txz <https://github.com/dslackw/slpkg/releases/download/v3.0.1/slpkg-3.0.1-i486-1_dsw.txz>`_
Slackware: `slpkg-3.0.2-i486-1_dsw.txz <https://github.com/dslackw/slpkg/releases/download/v3.0.2/slpkg-3.0.2-i486-1_dsw.txz>`_
Slackware64: `slpkg-3.0.1-x86_64-1_dsw.txz <https://github.com/dslackw/slpkg/releases/download/v3.0.1/slpkg-3.0.1-x86_64-1_dsw.txz>`_
Slackware64: `slpkg-3.0.2-x86_64-1_dsw.txz <https://github.com/dslackw/slpkg/releases/download/v3.0.2/slpkg-3.0.2-x86_64-1_dsw.txz>`_
Optional dependencies

View file

@ -77,7 +77,7 @@ class MetaData(object):
__all__ = "slpkg"
__author__ = "dslackw"
__version_info__ = (3, 0, 1)
__version_info__ = (3, 0, 2)
__version__ = "{0}.{1}.{2}".format(*__version_info__)
__license__ = "GNU General Public License v3 (GPLv3)"
__email__ = "d.zlatanidis@gmail.com"