Updated for version 4.8.2

This commit is contained in:
Dimitris Zlatanidis 2023-04-25 20:26:47 +03:00
parent 99b25e2410
commit 7d10401771
4 changed files with 4 additions and 4 deletions

View file

@ -1,6 +1,6 @@
# This is the general repositories configuration file of slpkg: # This is the general repositories configuration file of slpkg:
# /etc/slpkg/repositories.toml # /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 # The philosophy behind this is to have two repositories for
# Slackbuilds one for the Slackware stable and one for the -current # Slackbuilds one for the Slackware stable and one for the -current

View file

@ -1,6 +1,6 @@
# This is the general configuration file of slpkg: # This is the general configuration file of slpkg:
# /etc/slpkg/slpkg.toml # /etc/slpkg/slpkg.toml
# Date: 24/04/2023, Version: 4.8.1 # Date: 24/04/2023, Version: 4.8.2
[CONFIGS] [CONFIGS]

View file

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

View file

@ -5,7 +5,7 @@ class Version:
""" Print the version. """ """ Print the version. """
def __init__(self): 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.version: str = '{0}.{1}.{2}'.format(*self.version_info)
self.license: str = 'MIT License' self.license: str = 'MIT License'
self.author: str = 'Dimitris Zlatanidis (dslackw)' self.author: str = 'Dimitris Zlatanidis (dslackw)'