Skip to content

Commit

Permalink
bumped version to v0.9.5
Browse files Browse the repository at this point in the history
  • Loading branch information
caronc committed Sep 18, 2021
1 parent 5badfad commit b1a4d09
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 8 deletions.
2 changes: 1 addition & 1 deletion apprise/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>'
Expand Down
13 changes: 11 additions & 2 deletions apprise/i18n/apprise.pot
Original file line number Diff line number Diff line change
Expand Up @@ -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: [email protected]\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 <[email protected]>\n"
Expand Down Expand Up @@ -317,6 +317,9 @@ msgstr ""
msgid "Provider Key"
msgstr ""

msgid "QOS"
msgstr ""

msgid "Region"
msgstr ""

Expand Down Expand Up @@ -428,6 +431,9 @@ msgstr ""
msgid "Target Player ID"
msgstr ""

msgid "Target Queue"
msgstr ""

msgid "Target Room Alias"
msgstr ""

Expand Down Expand Up @@ -515,6 +521,9 @@ msgstr ""
msgid "Use Fields"
msgstr ""

msgid "Use Session"
msgstr ""

msgid "User ID"
msgstr ""

Expand Down
2 changes: 1 addition & 1 deletion apprise/plugins/NotifyReddit.py
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ def _fetch(self, url, payload=None):

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

Expand Down
2 changes: 1 addition & 1 deletion apprise/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]

Expand Down
5 changes: 4 additions & 1 deletion packaging/redhat/python-apprise.spec
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -248,6 +248,9 @@ LANG=C.UTF-8 PYTHONPATH=%{buildroot}%{python3_sitelib} py.test-%{python3_version
%endif

%changelog
* Sat Sep 18 2021 Chris Caron <[email protected]> - 0.9.5-1
- Updated to v0.9.5

* Wed Aug 11 2021 Chris Caron <[email protected]> - 0.9.4-1
- Updated to v0.9.4

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@

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(),
Expand All @@ -85,7 +85,7 @@
packages=find_packages(),
package_data={
'apprise': [
'assets/NotifyXML-1.0.xsd',
'assets/NotifyXML-*.xsd',
'assets/themes/default/*.png',
'assets/themes/default/*.ico',
'i18n/*.py',
Expand Down

0 comments on commit b1a4d09

Please sign in to comment.