Updated for version 4.9.5

This commit is contained in:
Dimitris Zlatanidis 2023-12-15 11:25:18 +02:00
parent 734aa95668
commit 096097a3d1
2 changed files with 2 additions and 2 deletions

View file

@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi"
[project]
name = "slpkg"
version = "4.9.4"
version = "4.9.5"
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, 4)
self.version_info: tuple = (4, 9, 5)
self.version: str = '{0}.{1}.{2}'.format(*self.version_info)
self.license: str = 'MIT License'
self.author: str = 'Dimitris Zlatanidis (dslackw)'