bumped version to v0.8.7

This commit is contained in:
Chris Caron 2020-08-13 17:36:06 -04:00
parent 53880890e3
commit e65b1dc5af
4 changed files with 58 additions and 9 deletions

View File

@ -24,7 +24,7 @@
# THE SOFTWARE. # THE SOFTWARE.
__title__ = 'apprise' __title__ = 'apprise'
__version__ = '0.8.6' __version__ = '0.8.7'
__author__ = 'Chris Caron' __author__ = 'Chris Caron'
__license__ = 'MIT' __license__ = 'MIT'
__copywrite__ = 'Copyright (C) 2020 Chris Caron <lead2gold@gmail.com>' __copywrite__ = 'Copyright (C) 2020 Chris Caron <lead2gold@gmail.com>'

View File

@ -6,9 +6,9 @@
#, fuzzy #, fuzzy
msgid "" msgid ""
msgstr "" 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" "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" "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"
@ -104,9 +104,15 @@ msgstr ""
msgid "Country" msgid "Country"
msgstr "" msgstr ""
msgid "Cycles"
msgstr ""
msgid "Detect Bot Owner" msgid "Detect Bot Owner"
msgstr "" msgstr ""
msgid "Device API Key"
msgstr ""
msgid "Device ID" msgid "Device ID"
msgstr "" msgstr ""
@ -173,6 +179,9 @@ msgstr ""
msgid "IRC Colors" msgid "IRC Colors"
msgstr "" msgstr ""
msgid "Icon Type"
msgstr ""
msgid "Include Footer" msgid "Include Footer"
msgstr "" msgstr ""
@ -200,6 +209,9 @@ msgstr ""
msgid "Modal" msgid "Modal"
msgstr "" msgstr ""
msgid "Mode"
msgstr ""
msgid "Notify Format" msgid "Notify Format"
msgstr "" msgstr ""
@ -281,6 +293,12 @@ msgstr ""
msgid "Server Timeout" msgid "Server Timeout"
msgstr "" msgstr ""
msgid "Socket Connect Timeout"
msgstr ""
msgid "Socket Read Timeout"
msgstr ""
msgid "Sound" msgid "Sound"
msgstr "" msgstr ""
@ -293,6 +311,12 @@ msgstr ""
msgid "Source Phone No" msgid "Source Phone No"
msgstr "" msgstr ""
msgid "Sticky"
msgstr ""
msgid "Subtitle"
msgstr ""
msgid "Target Channel" msgid "Target Channel"
msgstr "" msgstr ""
@ -383,6 +407,9 @@ msgstr ""
msgid "Use Avatar" msgid "Use Avatar"
msgstr "" msgstr ""
msgid "User ID"
msgstr ""
msgid "User Key" msgid "User Key"
msgstr "" msgstr ""

View File

@ -56,7 +56,7 @@ Sinch, Slack, Spontit, Super Toasty, Stride, Syslog, Techulus Push, Telegram,
Twilio, Twitter, Twist, XBMC, XMPP, Webex Teams} Twilio, Twitter, Twist, XBMC, XMPP, Webex Teams}
Name: python-%{pypi_name} Name: python-%{pypi_name}
Version: 0.8.6 Version: 0.8.7
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
@ -84,12 +84,10 @@ BuildRequires: python-markdown
%if 0%{?rhel} && 0%{?rhel} <= 7 %if 0%{?rhel} && 0%{?rhel} <= 7
BuildRequires: python-cryptography BuildRequires: python-cryptography
BuildRequires: python-babel BuildRequires: python-babel
BuildRequires: python-gntp
BuildRequires: python-yaml BuildRequires: python-yaml
%else %else
BuildRequires: python2-cryptography BuildRequires: python2-cryptography
BuildRequires: python2-babel BuildRequires: python2-babel
BuildRequires: python2-gntp
BuildRequires: python2-yaml BuildRequires: python2-yaml
%endif %endif
@ -98,10 +96,8 @@ Requires: python2-requests-oauthlib
Requires: python-six Requires: python-six
Requires: python-markdown Requires: python-markdown
%if 0%{?rhel} && 0%{?rhel} <= 7 %if 0%{?rhel} && 0%{?rhel} <= 7
Requires: python-gntp
Requires: python-yaml Requires: python-yaml
%else %else
Requires: python2-gntp
Requires: python2-yaml Requires: python2-yaml
%endif %endif
@ -144,7 +140,12 @@ BuildRequires: python%{python3_pkgversion}-requests-oauthlib
BuildRequires: python%{python3_pkgversion}-six BuildRequires: python%{python3_pkgversion}-six
BuildRequires: python%{python3_pkgversion}-click >= 5.0 BuildRequires: python%{python3_pkgversion}-click >= 5.0
BuildRequires: python%{python3_pkgversion}-markdown 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 BuildRequires: python%{python3_pkgversion}-gntp
%endif
BuildRequires: python%{python3_pkgversion}-yaml BuildRequires: python%{python3_pkgversion}-yaml
BuildRequires: python%{python3_pkgversion}-babel BuildRequires: python%{python3_pkgversion}-babel
BuildRequires: python%{python3_pkgversion}-cryptography BuildRequires: python%{python3_pkgversion}-cryptography
@ -152,7 +153,12 @@ Requires: python%{python3_pkgversion}-requests
Requires: python%{python3_pkgversion}-requests-oauthlib Requires: python%{python3_pkgversion}-requests-oauthlib
Requires: python%{python3_pkgversion}-six Requires: python%{python3_pkgversion}-six
Requires: python%{python3_pkgversion}-markdown 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 Requires: python%{python3_pkgversion}-gntp
%endif
Requires: python%{python3_pkgversion}-yaml Requires: python%{python3_pkgversion}-yaml
%if %{with tests} %if %{with tests}
@ -231,9 +237,25 @@ LANG=C.UTF-8 PYTHONPATH=%{buildroot}%{python3_sitelib} py.test-%{python3_version
%endif %endif
%changelog %changelog
* Thu Aug 13 2020 Chris Caron <lead2gold@gmail.com> - 0.8.7-1
- Updated to v0.8.7
* Mon Aug 03 2020 Chris Caron <lead2gold@gmail.com> - 0.8.6-4
- Updated SPEC so Fedora 33 Mass Rebuild would pass
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.6-3
- Second attempt - Rebuilt for
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.6-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Sat Jun 13 2020 Chris Caron <lead2gold@gmail.com> - 0.8.6-1 * Sat Jun 13 2020 Chris Caron <lead2gold@gmail.com> - 0.8.6-1
- Updated to v0.8.6 - Updated to v0.8.6
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 0.8.5-2
- Rebuilt for Python 3.9
* Mon Mar 30 2020 Chris Caron <lead2gold@gmail.com> - 0.8.5-1 * Mon Mar 30 2020 Chris Caron <lead2gold@gmail.com> - 0.8.5-1
- Updated to v0.8.5 - Updated to v0.8.5

View File

@ -62,7 +62,7 @@ else:
setup( setup(
name='apprise', name='apprise',
version='0.8.6', version='0.8.7',
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(),