Updated for version 4.2.3

Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
This commit is contained in:
Dimitris Zlatanidis 2022-10-28 22:04:29 +03:00
parent 6bf22f40ae
commit 2544e0cae7
3 changed files with 5 additions and 5 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.2.2.tar.gz
$ cd slpkg-4.2.2
$ tar xvf slpkg-4.2.3.tar.gz
$ cd slpkg-4.2.3
$ ./install.sh
@ -96,6 +96,6 @@ If you feel satisfied with this project and want to thanks me make a donation.
Copyright
---------
- Copyright 2014-2022 © Dimitris Zlatanidis.
- Copyright 2014.2.32 © Dimitris Zlatanidis.
- Slackware® is a Registered Trademark of Patrick Volkerding.
- Linux is a Registered Trademark of Linus Torvalds.

View file

@ -1,6 +1,6 @@
[metadata]
name = slpkg
version = 4.2.2
version = 4.2.3
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, 2)
version_info: tuple = (4, 2, 3)
version: str = '{0}.{1}.{2}'.format(*version_info)
license: str = 'MIT License'
author: str = 'dslackw'