diff --git a/apprise/__init__.py b/apprise/__init__.py index 01933b47..8dcd0b99 100644 --- a/apprise/__init__.py +++ b/apprise/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2020 Chris Caron +# Copyright (C) 2021 Chris Caron # All rights reserved. # # This code is licensed under the MIT License. @@ -24,10 +24,10 @@ # THE SOFTWARE. __title__ = 'apprise' -__version__ = '0.9.0' +__version__ = '0.9.1' __author__ = 'Chris Caron' __license__ = 'MIT' -__copywrite__ = 'Copyright (C) 2020 Chris Caron ' +__copywrite__ = 'Copyright (C) 2021 Chris Caron ' __email__ = 'lead2gold@gmail.com' __status__ = 'Production' diff --git a/apprise/i18n/apprise.pot b/apprise/i18n/apprise.pot index d5a73185..1f07cfd7 100644 --- a/apprise/i18n/apprise.pot +++ b/apprise/i18n/apprise.pot @@ -1,21 +1,21 @@ # Translations template for apprise. -# Copyright (C) 2020 Chris Caron +# Copyright (C) 2021 Chris Caron # This file is distributed under the same license as the apprise project. -# FIRST AUTHOR , 2020. +# FIRST AUTHOR , 2021. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: apprise 0.9.0\n" +"Project-Id-Version: apprise 0.9.1\n" "Report-Msgid-Bugs-To: lead2gold@gmail.com\n" -"POT-Creation-Date: 2020-12-30 16:35-0500\n" +"POT-Creation-Date: 2021-02-23 11:07-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" +"Generated-By: Babel 2.8.1\n" msgid "API Key" msgstr "" @@ -230,6 +230,9 @@ msgstr "" msgid "Log to STDERR" msgstr "" +msgid "Long-Lived Access Token" +msgstr "" + msgid "Master Key" msgstr "" @@ -248,12 +251,18 @@ msgstr "" msgid "Mode" msgstr "" +msgid "Notification ID" +msgstr "" + msgid "Notify Format" msgstr "" msgid "OAuth Access Token" msgstr "" +msgid "OAuth2 KeyFile" +msgstr "" + msgid "Organization" msgstr "" @@ -425,6 +434,9 @@ msgstr "" msgid "Targets " msgstr "" +msgid "Team Name" +msgstr "" + msgid "Template" msgstr "" @@ -503,12 +515,18 @@ msgstr "" msgid "Webhook ID" msgstr "" +msgid "Webhook Key" +msgstr "" + msgid "Webhook Mode" msgstr "" msgid "Webhook Token" msgstr "" +msgid "Workspace" +msgstr "" + msgid "X-Axis" msgstr "" diff --git a/packaging/redhat/python-apprise.spec b/packaging/redhat/python-apprise.spec index 3fa2ff4a..52c5f6e5 100644 --- a/packaging/redhat/python-apprise.spec +++ b/packaging/redhat/python-apprise.spec @@ -1,4 +1,4 @@ -# Copyright (C) 2020 Chris Caron +# Copyright (C) 2021 Chris Caron # All rights reserved. # # This code is licensed under the MIT License. @@ -57,7 +57,7 @@ Sinch, Slack, Spontit, SparkPost, Super Toasty, Stride, Syslog, Techulus Push, Telegram, Twilio, Twitter, Twist, XBMC, XMPP, Webex Teams} Name: python-%{pypi_name} -Version: 0.9.0 +Version: 0.9.1 Release: 1%{?dist} Summary: A simple wrapper to many popular notification services used today License: MIT @@ -243,6 +243,12 @@ LANG=C.UTF-8 PYTHONPATH=%{buildroot}%{python3_sitelib} py.test-%{python3_version %endif %changelog +* Tue Feb 23 2021 Chris Caron - 0.9.1-1 +- Updated to v0.9.1 + +* Thu Jan 14 2021 Chris Caron - 0.9.0-2 +- Fixed unit tests + * Wed Dec 30 2020 Chris Caron - 0.9.0-1 - Updated to v0.9.0 diff --git a/setup.py b/setup.py index 170737d8..876ed6e5 100755 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- # -# Copyright (C) 2020 Chris Caron +# Copyright (C) 2021 Chris Caron # All rights reserved. # # This code is licensed under the MIT License. @@ -62,7 +62,7 @@ else: setup( name='apprise', - version='0.9.0', + version='0.9.1', description='Push Notifications that work with just about every platform!', license='MIT', long_description=open('README.md').read(),