Updated for version 4.1.4

This commit is contained in:
Dimitris Zlatanidis 2022-06-29 10:39:54 +03:00
parent 19f77bd114
commit 6bb5010846
4 changed files with 8 additions and 4 deletions

View file

@ -1,3 +1,7 @@
4.1.4 - 29/06/2022
-Added
- setup.cfg file
4.1.3 - 26/06/2022
Bugfixed:
- /tmp permissions after installation

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.1.3.tar.gz
$ cd slpkg-4.1.3
$ tar xvf slpkg-4.1.4.tar.gz
$ cd slpkg-4.1.4
$ ./install.sh

View file

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