Updated for version 4.9.8

This commit is contained in:
Dimitris Zlatanidis 2024-02-11 20:52:07 +02:00
parent 31afb184ed
commit 82478b5664
3 changed files with 6 additions and 2 deletions

View file

@ -1,5 +1,9 @@
## slpkg - ChangeLog
### 4.9.8 - 11/02/2024
- Added:
* python urllib3 setting from config file (slpkg.toml)
### 4.9.7 - 07/01/2024
- Fixed:
* Fix urllib3 KeyError: 'content-length'

View file

@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi"
[project]
name = "slpkg"
version = "4.9.7"
version = "4.9.8"
authors = [
{name = "Dimitris Zlatanidis", email = "dslackw@gmail.com"},
]

View file

@ -5,7 +5,7 @@ class Version:
""" Print the version. """
def __init__(self):
self.version_info: tuple = (4, 9, 7)
self.version_info: tuple = (4, 9, 8)
self.version: str = '{0}.{1}.{2}'.format(*self.version_info)
self.license: str = 'GNU General Public License v3 (GPLv3)'
self.author: str = 'Dimitris Zlatanidis (dslackw)'