Updated for version 4.1.6

Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
This commit is contained in:
Dimitris Zlatanidis 2022-09-26 19:56:58 +03:00
parent 6de675731f
commit e299cef85c
2 changed files with 3 additions and 3 deletions

View file

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

View file

@ -10,7 +10,7 @@ from slpkg.configs import Configs
@dataclass @dataclass
class Version: class Version:
prog_name: str = Configs.prog_name prog_name: str = Configs.prog_name
version_info: tuple = (4, 1, 5) version_info: tuple = (4, 1, 6)
version: str = '{0}.{1}.{2}'.format(*version_info) version: str = '{0}.{1}.{2}'.format(*version_info)
license: str = 'MIT License' license: str = 'MIT License'
author: str = 'dslackw' author: str = 'dslackw'