From e54efa6e5895bbe5e8aacfc25f8c24dd1abc4201 Mon Sep 17 00:00:00 2001 From: Jake Hunsaker Date: Mon, 17 Aug 2020 17:41:02 -0400 Subject: [build] Bump version to 4.0 This commits marks the release of sos-4.0 Signed-off-by: Jake Hunsaker --- docs/conf.py | 4 ++-- sos.spec | 5 ++++- sos/__init__.py | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 058b28e3..c3f126fb 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 = '3.9' +version = '4.0' # The full version, including alpha/beta/rc tags. -release = '3.9.1' +release = '4.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/sos.spec b/sos.spec index 4c34e534..fc6fb5a6 100644 --- a/sos.spec +++ b/sos.spec @@ -2,7 +2,7 @@ Summary: A set of tools to gather troubleshooting information from a system Name: sos -Version: 3.9 +Version: 4.0 Release: 1%{?dist} Group: Applications/System Source0: https://github.com/sosreport/sos/archive/%{name}-%{version}.tar.gz @@ -61,6 +61,9 @@ rm ${RPM_BUILD_ROOT}/sos.conf %config(noreplace) %{_sysconfdir}/sos/sos.conf %changelog +* Mon Aug 17 2020 Jake Hunsaker = 4.0 +- New upstream release + * Fri Feb 14 2020 Bryn M. Reeves = 3.9 - New upstream release diff --git a/sos/__init__.py b/sos/__init__.py index f9de58cc..cc8ce86f 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__ = "3.9" +__version__ = "4.0" import os import sys -- cgit