Browse Source

bumped version to v0.9.4

pull/424/head v0.9.4
Chris Caron 3 years ago
parent
commit
0007eade20
  1. 2
      apprise/__init__.py
  2. 4
      apprise/i18n/apprise.pot
  3. 11
      packaging/redhat/python-apprise.spec
  4. 2
      setup.py

2
apprise/__init__.py

@ -24,7 +24,7 @@
# THE SOFTWARE.
__title__ = 'Apprise'
__version__ = '0.9.3'
__version__ = '0.9.4'
__author__ = 'Chris Caron'
__license__ = 'MIT'
__copywrite__ = 'Copyright (C) 2021 Chris Caron <lead2gold@gmail.com>'

4
apprise/i18n/apprise.pot

@ -6,9 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: apprise 0.9.3\n"
"Project-Id-Version: apprise 0.9.4\n"
"Report-Msgid-Bugs-To: lead2gold@gmail.com\n"
"POT-Creation-Date: 2021-05-16 14:30-0400\n"
"POT-Creation-Date: 2021-08-11 22:08-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"

11
packaging/redhat/python-apprise.spec

@ -58,8 +58,8 @@ Stride, Syslog, Techulus Push, Telegram, Twilio, Twitter, Twist, XBMC, XMPP,
Webex Teams}
Name: python-%{pypi_name}
Version: 0.9.3
Release: 3%{?dist}
Version: 0.9.4
Release: 1%{?dist}
Summary: A simple wrapper to many popular notification services used today
License: MIT
URL: https://github.com/caronc/%{pypi_name}
@ -145,7 +145,7 @@ 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) || (0%{?fedora} && 0%{?fedora} <= 35)
%if (0%{?rhel} && 0%{?rhel} >= 8) || (0%{?fedora} && 0%{?fedora} >= 35)
# gntp isn't available from EPEL for RHEL/CentOS 8 or Fedora 35+
%else
# For all other distributions, include gntp
@ -159,7 +159,7 @@ Requires: python%{python3_pkgversion}-requests-oauthlib
Requires: python%{python3_pkgversion}-six
Requires: python%{python3_pkgversion}-markdown
Requires: python%{python3_pkgversion}-cryptography
%if (0%{?rhel} && 0%{?rhel} >= 8) || (0%{?fedora} && 0%{?fedora} <= 35)
%if (0%{?rhel} && 0%{?rhel} >= 8) || (0%{?fedora} && 0%{?fedora} >= 35)
# gntp isn't available from EPEL for RHEL/CentOS 8 or Fedora 35+
%else
# For all other distributions, include gntp
@ -248,6 +248,9 @@ LANG=C.UTF-8 PYTHONPATH=%{buildroot}%{python3_sitelib} py.test-%{python3_version
%endif
%changelog
* Wed Aug 11 2021 Chris Caron <lead2gold@gmail.com> - 0.9.4-1
- Updated to v0.9.4
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.3-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild

2
setup.py

@ -62,7 +62,7 @@ else:
setup(
name='apprise',
version='0.9.3',
version='0.9.4',
description='Push Notifications that work with just about every platform!',
license='MIT',
long_description=open('README.md').read(),

Loading…
Cancel
Save