mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-11-16 07:47:35 +01:00
Updated for version 4.4.3
This commit is contained in:
parent
983abeff98
commit
e32b6378bd
3 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
|||
4.4.3 - 30/12/2022
|
||||
Updated:
|
||||
- Switch to pathlib library
|
||||
|
||||
4.4.2 - 29/12/2022
|
||||
Updated:
|
||||
- Improve paths
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[metadata]
|
||||
name = slpkg
|
||||
version = 4.4.2
|
||||
version = 4.4.3
|
||||
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 = (4, 4, 2)
|
||||
self.version_info = (4, 4, 3)
|
||||
self.version = '{0}.{1}.{2}'.format(*self.version_info)
|
||||
self.license = 'MIT License'
|
||||
self.author = 'Dimitris Zlatanidis (dslackw)'
|
||||
|
|
Loading…
Reference in a new issue