From b1a4d09a754ca70a7952a0c834b28b4960c55684 Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Sat, 18 Sep 2021 15:57:30 -0400 Subject: [PATCH] bumped version to v0.9.5 --- apprise/__init__.py | 2 +- apprise/i18n/apprise.pot | 13 +++++++++++-- apprise/plugins/NotifyReddit.py | 2 +- apprise/utils.py | 2 +- packaging/redhat/python-apprise.spec | 5 ++++- setup.py | 4 ++-- 6 files changed, 20 insertions(+), 8 deletions(-) diff --git a/apprise/__init__.py b/apprise/__init__.py index 581d878d..acee64be 100644 --- a/apprise/__init__.py +++ b/apprise/__init__.py @@ -24,7 +24,7 @@ # THE SOFTWARE. __title__ = 'Apprise' -__version__ = '0.9.4' +__version__ = '0.9.5' __author__ = 'Chris Caron' __license__ = 'MIT' __copywrite__ = 'Copyright (C) 2021 Chris Caron ' diff --git a/apprise/i18n/apprise.pot b/apprise/i18n/apprise.pot index 2e9b72f9..4e5dc6b6 100644 --- a/apprise/i18n/apprise.pot +++ b/apprise/i18n/apprise.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: apprise 0.9.4\n" +"Project-Id-Version: apprise 0.9.5\n" "Report-Msgid-Bugs-To: lead2gold@gmail.com\n" -"POT-Creation-Date: 2021-08-11 22:08-0400\n" +"POT-Creation-Date: 2021-09-18 15:12-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -317,6 +317,9 @@ msgstr "" msgid "Provider Key" msgstr "" +msgid "QOS" +msgstr "" + msgid "Region" msgstr "" @@ -428,6 +431,9 @@ msgstr "" msgid "Target Player ID" msgstr "" +msgid "Target Queue" +msgstr "" + msgid "Target Room Alias" msgstr "" @@ -515,6 +521,9 @@ msgstr "" msgid "Use Fields" msgstr "" +msgid "Use Session" +msgstr "" + msgid "User ID" msgstr "" diff --git a/apprise/plugins/NotifyReddit.py b/apprise/plugins/NotifyReddit.py index 51e0e355..2da5da86 100644 --- a/apprise/plugins/NotifyReddit.py +++ b/apprise/plugins/NotifyReddit.py @@ -668,7 +668,7 @@ class NotifyReddit(NotifyBase): except requests.RequestException as e: self.logger.warning( - 'Exception received when sending Reddit to {}: '. + 'Exception received when sending Reddit to {}'. format(url)) self.logger.debug('Socket Exception: %s' % str(e)) diff --git a/apprise/utils.py b/apprise/utils.py index ddc19f50..59301865 100644 --- a/apprise/utils.py +++ b/apprise/utils.py @@ -225,7 +225,7 @@ def is_hostname(hostname, ipv4=True, ipv6=True): if len(hostname) > 253 or len(hostname) == 0: return False - # Strip trailling period on hostname (if one exists) + # Strip trailing period on hostname (if one exists) if hostname[-1] == ".": hostname = hostname[:-1] diff --git a/packaging/redhat/python-apprise.spec b/packaging/redhat/python-apprise.spec index f01cf300..b0c9cd80 100644 --- a/packaging/redhat/python-apprise.spec +++ b/packaging/redhat/python-apprise.spec @@ -58,7 +58,7 @@ Streamlabs, Stride, Syslog, Techulus Push, Telegram, Twilio, Twitter, Twist, XBM XMPP, Webex Teams} Name: python-%{pypi_name} -Version: 0.9.4 +Version: 0.9.5 Release: 1%{?dist} Summary: A simple wrapper to many popular notification services used today License: MIT @@ -248,6 +248,9 @@ LANG=C.UTF-8 PYTHONPATH=%{buildroot}%{python3_sitelib} py.test-%{python3_version %endif %changelog +* Sat Sep 18 2021 Chris Caron - 0.9.5-1 +- Updated to v0.9.5 + * Wed Aug 11 2021 Chris Caron - 0.9.4-1 - Updated to v0.9.4 diff --git a/setup.py b/setup.py index 04f6cf2a..ff2876d4 100755 --- a/setup.py +++ b/setup.py @@ -62,7 +62,7 @@ else: setup( name='apprise', - version='0.9.4', + version='0.9.5', description='Push Notifications that work with just about every platform!', license='MIT', long_description=open('README.md').read(), @@ -85,7 +85,7 @@ setup( packages=find_packages(), package_data={ 'apprise': [ - 'assets/NotifyXML-1.0.xsd', + 'assets/NotifyXML-*.xsd', 'assets/themes/default/*.png', 'assets/themes/default/*.ico', 'i18n/*.py',