Updated for version 4.3.7

Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
This commit is contained in:
Dimitris Zlatanidis 2022-12-09 19:49:08 +02:00
parent 01454c8093
commit 3a85d4293c
3 changed files with 4 additions and 4 deletions

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.6.tar.gz
$ cd slpkg-4.3.6
$ tar xvf slpkg-4.3.7.tar.gz
$ cd slpkg-4.3.7
$ ./install.sh

View file

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

View file

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