diff options
-rw-r--r-- | sos.spec | 5 | ||||
-rw-r--r-- | sos/__init__.py | 2 |
2 files changed, 5 insertions, 2 deletions
@@ -2,7 +2,7 @@ Summary: A set of tools to gather troubleshooting information from a system Name: sos -Version: 3.8 +Version: 3.9 Release: 1%{?dist} Group: Applications/System Source0: https://github.com/sosreport/sos/archive/%{version}.tar.gz @@ -53,6 +53,9 @@ rm -rf ${RPM_BUILD_ROOT} %config(noreplace) %{_sysconfdir}/sos.conf %changelog +* Fri Feb 14 2020 Bryn M. Reeves <bmr@redhat.com> = 3.9 +- New upstream release + * Tue Aug 27 2019 Pavel Moravec <pmoravec@redhat.com> = 3.8 - New upstream release diff --git a/sos/__init__.py b/sos/__init__.py index ddee2ca6..111e066e 100644 --- a/sos/__init__.py +++ b/sos/__init__.py @@ -25,7 +25,7 @@ if six.PY3: else: from ConfigParser import ConfigParser, ParsingError, Error -__version__ = "3.8" +__version__ = "3.9" gettext_dir = "/usr/share/locale" gettext_app = "sos" |