mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-12-26 09:58:31 +01:00
Updated for version 4.9.8
This commit is contained in:
parent
31afb184ed
commit
82478b5664
3 changed files with 6 additions and 2 deletions
|
@ -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'
|
||||
|
|
|
@ -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"},
|
||||
]
|
||||
|
|
|
@ -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)'
|
||||
|
|
Loading…
Reference in a new issue