Browse Source

bumped version to v0.9.5

pull/447/head v0.9.5
Chris Caron 3 years ago
parent
commit
b1a4d09a75
  1. 2
      apprise/__init__.py
  2. 13
      apprise/i18n/apprise.pot
  3. 2
      apprise/plugins/NotifyReddit.py
  4. 2
      apprise/utils.py
  5. 5
      packaging/redhat/python-apprise.spec
  6. 4
      setup.py

2
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 <lead2gold@gmail.com>'

13
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 <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\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 ""

2
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))

2
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]

5
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 <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
- Updated to v0.9.4

4
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',

Loading…
Cancel
Save