Updated for version 3.7.5

Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
This commit is contained in:
Dimitris Zlatanidis 2020-01-15 23:26:48 +01:00
parent 27d4ba5419
commit 6c09177ea5
3 changed files with 9 additions and 3 deletions

View file

@ -1,3 +1,9 @@
3.7.5 - 15/01/2020
Fixed:
- Bugfix: merge files with slack repository between current and slack versions
Updated:
- code to improve for Python 3
3.7.4 - 20/12/2019 3.7.4 - 20/12/2019
Fixed: Fixed:
- Bugfix: UnicodeDecodeError: 'utf-8' codec can't decode byte - Bugfix: UnicodeDecodeError: 'utf-8' codec can't decode byte

View file

@ -1,4 +1,4 @@
# slpkg 3.7.4 # slpkg 3.7.5
Slpkg is a powerful software package manager that installs, updates, and removes packages on Slpkg is a powerful software package manager that installs, updates, and removes packages on
[Slackware](http://www.slackware.com/) based systems. It automatically computes dependencies and [Slackware](http://www.slackware.com/) based systems. It automatically computes dependencies and

View file

@ -78,7 +78,7 @@ class MetaData:
__all__ = "slpkg" __all__ = "slpkg"
__author__ = "dslackw" __author__ = "dslackw"
__version_info__ = (3, 7, 4) __version_info__ = (3, 7, 5)
__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"