diff --git a/apprise/__init__.py b/apprise/__init__.py index 5bccbe2a..581d878d 100644 --- a/apprise/__init__.py +++ b/apprise/__init__.py @@ -24,7 +24,7 @@ # THE SOFTWARE. __title__ = 'Apprise' -__version__ = '0.9.3' +__version__ = '0.9.4' __author__ = 'Chris Caron' __license__ = 'MIT' __copywrite__ = 'Copyright (C) 2021 Chris Caron ' diff --git a/apprise/i18n/apprise.pot b/apprise/i18n/apprise.pot index a8ef67bf..2e9b72f9 100644 --- a/apprise/i18n/apprise.pot +++ b/apprise/i18n/apprise.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: apprise 0.9.3\n" +"Project-Id-Version: apprise 0.9.4\n" "Report-Msgid-Bugs-To: lead2gold@gmail.com\n" -"POT-Creation-Date: 2021-05-16 14:30-0400\n" +"POT-Creation-Date: 2021-08-11 22:08-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/packaging/redhat/python-apprise.spec b/packaging/redhat/python-apprise.spec index 3af41e16..c09fe381 100644 --- a/packaging/redhat/python-apprise.spec +++ b/packaging/redhat/python-apprise.spec @@ -58,8 +58,8 @@ Stride, Syslog, Techulus Push, Telegram, Twilio, Twitter, Twist, XBMC, XMPP, Webex Teams} Name: python-%{pypi_name} -Version: 0.9.3 -Release: 3%{?dist} +Version: 0.9.4 +Release: 1%{?dist} Summary: A simple wrapper to many popular notification services used today License: MIT URL: https://github.com/caronc/%{pypi_name} @@ -145,7 +145,7 @@ BuildRequires: python%{python3_pkgversion}-requests-oauthlib BuildRequires: python%{python3_pkgversion}-six BuildRequires: python%{python3_pkgversion}-click >= 5.0 BuildRequires: python%{python3_pkgversion}-markdown -%if (0%{?rhel} && 0%{?rhel} >= 8) || (0%{?fedora} && 0%{?fedora} <= 35) +%if (0%{?rhel} && 0%{?rhel} >= 8) || (0%{?fedora} && 0%{?fedora} >= 35) # gntp isn't available from EPEL for RHEL/CentOS 8 or Fedora 35+ %else # For all other distributions, include gntp @@ -159,7 +159,7 @@ Requires: python%{python3_pkgversion}-requests-oauthlib Requires: python%{python3_pkgversion}-six Requires: python%{python3_pkgversion}-markdown Requires: python%{python3_pkgversion}-cryptography -%if (0%{?rhel} && 0%{?rhel} >= 8) || (0%{?fedora} && 0%{?fedora} <= 35) +%if (0%{?rhel} && 0%{?rhel} >= 8) || (0%{?fedora} && 0%{?fedora} >= 35) # gntp isn't available from EPEL for RHEL/CentOS 8 or Fedora 35+ %else # For all other distributions, include gntp @@ -248,6 +248,9 @@ LANG=C.UTF-8 PYTHONPATH=%{buildroot}%{python3_sitelib} py.test-%{python3_version %endif %changelog +* Wed Aug 11 2021 Chris Caron - 0.9.4-1 +- Updated to v0.9.4 + * Fri Jul 23 2021 Fedora Release Engineering - 0.9.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild diff --git a/setup.py b/setup.py index d833155f..0f8e3d2f 100755 --- a/setup.py +++ b/setup.py @@ -62,7 +62,7 @@ else: setup( name='apprise', - version='0.9.3', + version='0.9.4', description='Push Notifications that work with just about every platform!', license='MIT', long_description=open('README.md').read(),