diff options
-rw-r--r-- | docs/conf.py | 4 | ||||
-rw-r--r-- | sos.spec | 8 | ||||
-rw-r--r-- | sos/__init__.py | 2 |
3 files changed, 10 insertions, 4 deletions
diff --git a/docs/conf.py b/docs/conf.py index 28858e28..c886a9b9 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -59,9 +59,9 @@ copyright = '2014, Bryn Reeves' # built documents. # # The short X.Y version. -version = '4.3' +version = '4.4' # The full version, including alpha/beta/rc tags. -release = '4.3' +release = '4.4' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. @@ -2,7 +2,7 @@ Summary: A set of tools to gather troubleshooting information from a system Name: sos -Version: 4.3 +Version: 4.4 Release: 1%{?dist} Group: Applications/System Source0: https://github.com/sosreport/sos/archive/%{name}-%{version}.tar.gz @@ -62,6 +62,12 @@ rm -rf ${RPM_BUILD_ROOT}/usr/config/ %config(noreplace) %{_sysconfdir}/sos/sos.conf %changelog +* Mon Aug 15 2022 Jake Hunsaker <jhunsake@redhat.com> = 4.4 +- New upstream release + +* Mon Feb 14 2022 Jake Hunsaker <jhunsake@redhat.com> = 4.3 +- New upstream release + * Mon Aug 16 2021 Jake Hunsaker <jhunsake@redhat.com> = 4.2 - New upstream release diff --git a/sos/__init__.py b/sos/__init__.py index 0f64fcea..5bd9fff8 100644 --- a/sos/__init__.py +++ b/sos/__init__.py @@ -14,7 +14,7 @@ This module houses the i18n setup and message function. The default is to use gettext to internationalize messages. """ -__version__ = "4.3" +__version__ = "4.4" import os import sys |