diff --git a/apprise/__init__.py b/apprise/__init__.py index f7959163..fcc910c1 100644 --- a/apprise/__init__.py +++ b/apprise/__init__.py @@ -24,7 +24,7 @@ # THE SOFTWARE. __title__ = 'apprise' -__version__ = '0.8.6' +__version__ = '0.8.7' __author__ = 'Chris Caron' __license__ = 'MIT' __copywrite__ = 'Copyright (C) 2020 Chris Caron ' diff --git a/apprise/i18n/apprise.pot b/apprise/i18n/apprise.pot index 0c03a405..15bad6b2 100644 --- a/apprise/i18n/apprise.pot +++ b/apprise/i18n/apprise.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: apprise 0.8.6\n" +"Project-Id-Version: apprise 0.8.7\n" "Report-Msgid-Bugs-To: lead2gold@gmail.com\n" -"POT-Creation-Date: 2020-06-13 10:55-0400\n" +"POT-Creation-Date: 2020-08-13 17:07-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -104,9 +104,15 @@ msgstr "" msgid "Country" msgstr "" +msgid "Cycles" +msgstr "" + msgid "Detect Bot Owner" msgstr "" +msgid "Device API Key" +msgstr "" + msgid "Device ID" msgstr "" @@ -173,6 +179,9 @@ msgstr "" msgid "IRC Colors" msgstr "" +msgid "Icon Type" +msgstr "" + msgid "Include Footer" msgstr "" @@ -200,6 +209,9 @@ msgstr "" msgid "Modal" msgstr "" +msgid "Mode" +msgstr "" + msgid "Notify Format" msgstr "" @@ -281,6 +293,12 @@ msgstr "" msgid "Server Timeout" msgstr "" +msgid "Socket Connect Timeout" +msgstr "" + +msgid "Socket Read Timeout" +msgstr "" + msgid "Sound" msgstr "" @@ -293,6 +311,12 @@ msgstr "" msgid "Source Phone No" msgstr "" +msgid "Sticky" +msgstr "" + +msgid "Subtitle" +msgstr "" + msgid "Target Channel" msgstr "" @@ -383,6 +407,9 @@ msgstr "" msgid "Use Avatar" msgstr "" +msgid "User ID" +msgstr "" + msgid "User Key" msgstr "" diff --git a/packaging/redhat/python-apprise.spec b/packaging/redhat/python-apprise.spec index c86a5b07..ea9bd0eb 100644 --- a/packaging/redhat/python-apprise.spec +++ b/packaging/redhat/python-apprise.spec @@ -56,7 +56,7 @@ Sinch, Slack, Spontit, Super Toasty, Stride, Syslog, Techulus Push, Telegram, Twilio, Twitter, Twist, XBMC, XMPP, Webex Teams} Name: python-%{pypi_name} -Version: 0.8.6 +Version: 0.8.7 Release: 1%{?dist} Summary: A simple wrapper to many popular notification services used today License: MIT @@ -84,12 +84,10 @@ BuildRequires: python-markdown %if 0%{?rhel} && 0%{?rhel} <= 7 BuildRequires: python-cryptography BuildRequires: python-babel -BuildRequires: python-gntp BuildRequires: python-yaml %else BuildRequires: python2-cryptography BuildRequires: python2-babel -BuildRequires: python2-gntp BuildRequires: python2-yaml %endif @@ -98,10 +96,8 @@ Requires: python2-requests-oauthlib Requires: python-six Requires: python-markdown %if 0%{?rhel} && 0%{?rhel} <= 7 -Requires: python-gntp Requires: python-yaml %else -Requires: python2-gntp Requires: python2-yaml %endif @@ -144,7 +140,12 @@ BuildRequires: python%{python3_pkgversion}-requests-oauthlib BuildRequires: python%{python3_pkgversion}-six BuildRequires: python%{python3_pkgversion}-click >= 5.0 BuildRequires: python%{python3_pkgversion}-markdown +%if 0%{?rhel} && 0%{?rhel} >= 8 +# gntp isn't available from EPEL for RHEL/CentOS 8 +%else +# For all other distributions, include gntp BuildRequires: python%{python3_pkgversion}-gntp +%endif BuildRequires: python%{python3_pkgversion}-yaml BuildRequires: python%{python3_pkgversion}-babel BuildRequires: python%{python3_pkgversion}-cryptography @@ -152,7 +153,12 @@ Requires: python%{python3_pkgversion}-requests Requires: python%{python3_pkgversion}-requests-oauthlib Requires: python%{python3_pkgversion}-six Requires: python%{python3_pkgversion}-markdown +%if 0%{?rhel} && 0%{?rhel} >= 8 +# gntp isn't available from EPEL for RHEL/CentOS 8 +%else +# For all other distributions, include gntp Requires: python%{python3_pkgversion}-gntp +%endif Requires: python%{python3_pkgversion}-yaml %if %{with tests} @@ -231,9 +237,25 @@ LANG=C.UTF-8 PYTHONPATH=%{buildroot}%{python3_sitelib} py.test-%{python3_version %endif %changelog +* Thu Aug 13 2020 Chris Caron - 0.8.7-1 +- Updated to v0.8.7 + +* Mon Aug 03 2020 Chris Caron - 0.8.6-4 +- Updated SPEC so Fedora 33 Mass Rebuild would pass + +* Sat Aug 01 2020 Fedora Release Engineering - 0.8.6-3 +- Second attempt - Rebuilt for + https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Tue Jul 28 2020 Fedora Release Engineering - 0.8.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Sat Jun 13 2020 Chris Caron - 0.8.6-1 - Updated to v0.8.6 +* Tue May 26 2020 Miro HronĨok - 0.8.5-2 +- Rebuilt for Python 3.9 + * Mon Mar 30 2020 Chris Caron - 0.8.5-1 - Updated to v0.8.5 diff --git a/setup.py b/setup.py index 4d75c69f..b64de5d7 100755 --- a/setup.py +++ b/setup.py @@ -62,7 +62,7 @@ else: setup( name='apprise', - version='0.8.6', + version='0.8.7', description='Push Notifications that work with just about every platform!', license='MIT', long_description=open('README.md').read(),