mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-11-16 07:47:35 +01:00
Updated for version 4.7.1
This commit is contained in:
parent
14133e3e0e
commit
f6a045dda4
4 changed files with 8 additions and 4 deletions
|
@ -1,3 +1,7 @@
|
|||
4.7.1 - 02/04/2023
|
||||
Fixed:
|
||||
- TypeError: can only concatenate str (not "NoneType") to str
|
||||
|
||||
4.7.0 - 02/04/2023
|
||||
Updated:
|
||||
- Checks for recurring options
|
||||
|
|
|
@ -31,8 +31,8 @@ Install from the official third-party `SBo repository <https://slackbuilds.org/r
|
|||
|
||||
.. code-block:: bash
|
||||
|
||||
$ tar xvf slpkg-4.7.0.tar.gz
|
||||
$ cd slpkg-4.7.0
|
||||
$ tar xvf slpkg-4.7.1.tar.gz
|
||||
$ cd slpkg-4.7.1
|
||||
$ ./install.sh
|
||||
|
||||
Screenshots
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[metadata]
|
||||
name = slpkg
|
||||
version = 4.7.0
|
||||
version = 4.7.1
|
||||
license_file = LICENSE
|
||||
author = Dimitris Zlatanidis
|
||||
author_email = d.zlatanidis@gmail.com
|
||||
|
|
|
@ -5,7 +5,7 @@ class Version:
|
|||
""" Print the version. """
|
||||
|
||||
def __init__(self):
|
||||
self.version_info: tuple = (4, 7, 0)
|
||||
self.version_info: tuple = (4, 7, 1)
|
||||
self.version: str = '{0}.{1}.{2}'.format(*self.version_info)
|
||||
self.license: str = 'MIT License'
|
||||
self.author: str = 'Dimitris Zlatanidis (dslackw)'
|
||||
|
|
Loading…
Reference in a new issue