Updated for version 4.2.7

Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
This commit is contained in:
Dimitris Zlatanidis 2022-11-05 19:27:26 +02:00
parent f9a0648ffb
commit abdc4bbf83
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.2.6.tar.gz
$ cd slpkg-4.2.6
$ tar xvf slpkg-4.2.7.tar.gz
$ cd slpkg-4.2.7
$ ./install.sh

View file

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

View file

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