Update version

This commit is contained in:
Dimitris Zlatanidis 2015-09-21 21:43:57 +03:00
parent f24fc06dbf
commit 291a576566
3 changed files with 8 additions and 6 deletions

View file

@ -1,7 +1,9 @@
2.9.2 - 21/08/2015 2.9.2 - 21/08/2015
Fixed: Fixed:
- Strange problem with node-0.12.7 - uname and rm commands not found. #43
- 0 package will be installed... Would you like to continue [y/N]? #44 - 0 package will be installed... Would you like to continue [y/N]? #44
- Matching packages with case insensitive option - Matching packages with case insensitive option
- Build package without keep log file
- Some typos - Some typos
2.9.1 - 18/09/2015 2.9.1 - 18/09/2015

View file

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

View file

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