Updated for version 4.3.5

This commit is contained in:
Dimitris Zlatanidis 2022-12-07 19:01:46 +02:00
parent 9355f58ba8
commit 7fd2734787
4 changed files with 10 additions and 4 deletions

View file

@ -1,3 +1,9 @@
4.3.5 - 07/12/2022
Updated:
- Code style
Fixed:
- Flags parameter
4.3.4 - 02/12/2022
Updated:
- Remove dataclasses and switch to __init__

View file

@ -30,8 +30,8 @@ Install from the official third-party `SBo repository <https://slackbuilds.org/r
.. code-block:: bash
$ tar xvf slpkg-4.3.4.tar.gz
$ cd slpkg-4.3.4
$ tar xvf slpkg-4.3.5.tar.gz
$ cd slpkg-4.3.5
$ ./install.sh

View file

@ -1,6 +1,6 @@
[metadata]
name = slpkg
version = 4.3.4
version = 4.3.5
license_file = LICENSE
author = Dimitris Zlatanidis
author_email = d.zlatanidis@gmail.com

View file

@ -6,7 +6,7 @@ class Version:
""" Print the vesrsion. """
def __init__(self):
self.version_info: tuple = (4, 3, 4)
self.version_info: tuple = (4, 3, 5)
self.version: str = '{0}.{1}.{2}'.format(*self.version_info)
self.license: str = 'MIT License'
self.author: str = 'Dimitris Zlatanidis (dslackw)'