Updated for version 4.7.0rc3

This commit is contained in:
Dimitris Zlatanidis 2023-04-02 11:38:22 +03:00
parent 889b2925a5
commit a78837a2b9
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
[metadata]
name = slpkg
version = r.c.2
version = r.c.3
license_file = LICENSE
author = Dimitris Zlatanidis
author_email = d.zlatanidis@gmail.com

View file

@ -5,7 +5,7 @@ class Version:
""" Print the version. """
def __init__(self):
self.version_info: tuple = ('r', 'c', 2)
self.version_info: tuple = ('r', 'c', 3)
self.version: str = '{0}.{1}.{2}'.format(*self.version_info)
self.license: str = 'MIT License'
self.author: str = 'Dimitris Zlatanidis (dslackw)'