bumped version to v0.9.5

pull/447/head v0.9.5
Chris Caron 2021-09-18 15:57:30 -04:00
parent 5badfadf7f
commit b1a4d09a75
6 changed files with 20 additions and 8 deletions

View File

@ -24,7 +24,7 @@
# THE SOFTWARE. # THE SOFTWARE.
__title__ = 'Apprise' __title__ = 'Apprise'
__version__ = '0.9.4' __version__ = '0.9.5'
__author__ = 'Chris Caron' __author__ = 'Chris Caron'
__license__ = 'MIT' __license__ = 'MIT'
__copywrite__ = 'Copyright (C) 2021 Chris Caron <lead2gold@gmail.com>' __copywrite__ = 'Copyright (C) 2021 Chris Caron <lead2gold@gmail.com>'

View File

@ -6,9 +6,9 @@
#, fuzzy #, fuzzy
msgid "" msgid ""
msgstr "" 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" "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" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -317,6 +317,9 @@ msgstr ""
msgid "Provider Key" msgid "Provider Key"
msgstr "" msgstr ""
msgid "QOS"
msgstr ""
msgid "Region" msgid "Region"
msgstr "" msgstr ""
@ -428,6 +431,9 @@ msgstr ""
msgid "Target Player ID" msgid "Target Player ID"
msgstr "" msgstr ""
msgid "Target Queue"
msgstr ""
msgid "Target Room Alias" msgid "Target Room Alias"
msgstr "" msgstr ""
@ -515,6 +521,9 @@ msgstr ""
msgid "Use Fields" msgid "Use Fields"
msgstr "" msgstr ""
msgid "Use Session"
msgstr ""
msgid "User ID" msgid "User ID"
msgstr "" msgstr ""

View File

@ -668,7 +668,7 @@ class NotifyReddit(NotifyBase):
except requests.RequestException as e: except requests.RequestException as e:
self.logger.warning( self.logger.warning(
'Exception received when sending Reddit to {}: '. 'Exception received when sending Reddit to {}'.
format(url)) format(url))
self.logger.debug('Socket Exception: %s' % str(e)) self.logger.debug('Socket Exception: %s' % str(e))

View File

@ -225,7 +225,7 @@ def is_hostname(hostname, ipv4=True, ipv6=True):
if len(hostname) > 253 or len(hostname) == 0: if len(hostname) > 253 or len(hostname) == 0:
return False return False
# Strip trailling period on hostname (if one exists) # Strip trailing period on hostname (if one exists)
if hostname[-1] == ".": if hostname[-1] == ".":
hostname = hostname[:-1] hostname = hostname[:-1]

View File

@ -58,7 +58,7 @@ Streamlabs, Stride, Syslog, Techulus Push, Telegram, Twilio, Twitter, Twist, XBM
XMPP, Webex Teams} XMPP, Webex Teams}
Name: python-%{pypi_name} Name: python-%{pypi_name}
Version: 0.9.4 Version: 0.9.5
Release: 1%{?dist} Release: 1%{?dist}
Summary: A simple wrapper to many popular notification services used today Summary: A simple wrapper to many popular notification services used today
License: MIT License: MIT
@ -248,6 +248,9 @@ LANG=C.UTF-8 PYTHONPATH=%{buildroot}%{python3_sitelib} py.test-%{python3_version
%endif %endif
%changelog %changelog
* Sat Sep 18 2021 Chris Caron <lead2gold@gmail.com> - 0.9.5-1
- Updated to v0.9.5
* Wed Aug 11 2021 Chris Caron <lead2gold@gmail.com> - 0.9.4-1 * Wed Aug 11 2021 Chris Caron <lead2gold@gmail.com> - 0.9.4-1
- Updated to v0.9.4 - Updated to v0.9.4

View File

@ -62,7 +62,7 @@ else:
setup( setup(
name='apprise', name='apprise',
version='0.9.4', version='0.9.5',
description='Push Notifications that work with just about every platform!', description='Push Notifications that work with just about every platform!',
license='MIT', license='MIT',
long_description=open('README.md').read(), long_description=open('README.md').read(),
@ -85,7 +85,7 @@ setup(
packages=find_packages(), packages=find_packages(),
package_data={ package_data={
'apprise': [ 'apprise': [
'assets/NotifyXML-1.0.xsd', 'assets/NotifyXML-*.xsd',
'assets/themes/default/*.png', 'assets/themes/default/*.png',
'assets/themes/default/*.ico', 'assets/themes/default/*.ico',
'i18n/*.py', 'i18n/*.py',