diff --git a/configs/repositories.toml b/configs/repositories.toml index fcb701a7..f6d0ac35 100644 --- a/configs/repositories.toml +++ b/configs/repositories.toml @@ -1,6 +1,6 @@ # This is the general repositories configuration file of slpkg: # /etc/slpkg/repositories.toml -# Date: 24/04/2023, Version: 4.8.1 +# Date: 24/04/2023, Version: 4.8.2 # The philosophy behind this is to have two repositories for # Slackbuilds one for the Slackware stable and one for the -current diff --git a/configs/slpkg.toml b/configs/slpkg.toml index 17771231..3e369d1f 100644 --- a/configs/slpkg.toml +++ b/configs/slpkg.toml @@ -1,6 +1,6 @@ # This is the general configuration file of slpkg: # /etc/slpkg/slpkg.toml -# Date: 24/04/2023, Version: 4.8.1 +# Date: 24/04/2023, Version: 4.8.2 [CONFIGS] diff --git a/setup.cfg b/setup.cfg index 86bc8f8b..94350a26 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = slpkg -version = 4.8.1 +version = 4.8.2 license_file = LICENSE author = Dimitris Zlatanidis author_email = d.zlatanidis@gmail.com diff --git a/slpkg/views/version.py b/slpkg/views/version.py index ff8aa7d9..74f5de64 100644 --- a/slpkg/views/version.py +++ b/slpkg/views/version.py @@ -5,7 +5,7 @@ class Version: """ Print the version. """ def __init__(self): - self.version_info: tuple = (4, 8, 1) + self.version_info: tuple = (4, 8, 2) self.version: str = '{0}.{1}.{2}'.format(*self.version_info) self.license: str = 'MIT License' self.author: str = 'Dimitris Zlatanidis (dslackw)'