mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-12-26 09:58:31 +01:00
Updated for version 4.9.3
This commit is contained in:
parent
5904bd5755
commit
0d5bd3fe85
3 changed files with 6 additions and 2 deletions
|
@ -1,5 +1,9 @@
|
|||
## slpkg - ChangeLog
|
||||
|
||||
### 4.9.3 - 28/11/2023
|
||||
- Updated:
|
||||
* [Tracking] Returns the complete list of dependencies of a package
|
||||
|
||||
### 4.9.2 - 05/08/2023
|
||||
- Updated:
|
||||
* Check updates function for return repository size
|
||||
|
|
|
@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi"
|
|||
|
||||
[project]
|
||||
name = "slpkg"
|
||||
version = "4.9.2"
|
||||
version = "4.9.3"
|
||||
authors = [
|
||||
{name = "Dimitris Zlatanidis", email = "dslackw@gmail.com"},
|
||||
]
|
||||
|
|
|
@ -5,7 +5,7 @@ class Version:
|
|||
""" Print the version. """
|
||||
|
||||
def __init__(self):
|
||||
self.version_info: tuple = (4, 9, 2)
|
||||
self.version_info: tuple = (4, 9, 3)
|
||||
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