Updated for version 4.5.5

This commit is contained in:
Dimitris Zlatanidis 2023-03-02 23:11:34 +02:00
parent ea4c2c1622
commit d57971cb4b
3 changed files with 4 additions and 4 deletions

View file

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

View file

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

View file

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