Update version

This commit is contained in:
Dimitris Zlatanidis 2015-08-08 01:02:43 +03:00
parent ca046029bc
commit fdcbe0cd09
3 changed files with 12 additions and 6 deletions

View file

@ -1,3 +1,9 @@
2.7.1 - 08/08/2015
Fixed:
- Remove package when partial name is supplied #34
- Removing a package states "package not found" #35
- Remove and install references
2.7.0 - 06/08/2015
Fixed:
- EOFError when user interrupt with "ctrl + d"

View file

@ -20,7 +20,7 @@
:target: https://github.com/dslackw/slpkg/issues
Slpkg v2.7.0
Slpkg v2.7.1
============
|
@ -234,8 +234,8 @@ Untar the archive and run install.sh script:
.. code-block:: bash
$ tar xvf slpkg-2.7.0.tar.gz
$ cd slpkg-2.7.0
$ tar xvf slpkg-2.7.1.tar.gz
$ cd slpkg-2.7.1
$ ./install.sh
Using pip:
@ -254,9 +254,9 @@ Using pip:
Bbinary packages:
Slackware: `slpkg-2.7.0-i486-1_dsw.txz <https://github.com/dslackw/slpkg/releases/download/v2.7.0/slpkg-2.7.0-i486-1_dsw.txz>`_
Slackware: `slpkg-2.7.1-i486-1_dsw.txz <https://github.com/dslackw/slpkg/releases/download/v2.7.1/slpkg-2.7.1-i486-1_dsw.txz>`_
Slackware64: `slpkg-2.7.0-x86_64-1_dsw.txz <https://github.com/dslackw/slpkg/releases/download/v2.7.0/slpkg-2.7.0-x86_64-1_dsw.txz>`_
Slackware64: `slpkg-2.7.1-x86_64-1_dsw.txz <https://github.com/dslackw/slpkg/releases/download/v2.7.1/slpkg-2.7.1-x86_64-1_dsw.txz>`_
Upgrade

View file

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