bumped version to v0.9.8

pull/574/head v0.9.8
Chris Caron 2022-04-19 12:54:21 -04:00
parent 65d447ec4c
commit 32e2a79dd0
5 changed files with 27 additions and 7 deletions

View File

@ -29,7 +29,6 @@ from os.path import join
from os.path import dirname from os.path import dirname
from os.path import isfile from os.path import isfile
from os.path import abspath from os.path import abspath
from locale import getpreferredencoding
from .common import NotifyType from .common import NotifyType
@ -120,7 +119,7 @@ class AppriseAsset(object):
interpret_escapes = False interpret_escapes = False
# Defines the encoding of the content passed into Apprise # Defines the encoding of the content passed into Apprise
encoding = getpreferredencoding() encoding = 'utf-8'
# For more detail see CWE-312 @ # For more detail see CWE-312 @
# https://cwe.mitre.org/data/definitions/312.html # https://cwe.mitre.org/data/definitions/312.html

View File

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

View File

@ -6,9 +6,9 @@
#, fuzzy #, fuzzy
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: apprise 0.9.7\n" "Project-Id-Version: apprise 0.9.8\n"
"Report-Msgid-Bugs-To: lead2gold@gmail.com\n" "Report-Msgid-Bugs-To: lead2gold@gmail.com\n"
"POT-Creation-Date: 2022-02-02 14:27-0500\n" "POT-Creation-Date: 2022-04-19 12:42-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"
@ -77,6 +77,12 @@ msgstr ""
msgid "Application Secret" msgid "Application Secret"
msgstr "" msgstr ""
msgid "Attach"
msgstr ""
msgid "Attach Filename"
msgstr ""
msgid "Auth Token" msgid "Auth Token"
msgstr "" msgstr ""
@ -119,6 +125,9 @@ msgstr ""
msgid "Channels" msgid "Channels"
msgstr "" msgstr ""
msgid "Click"
msgstr ""
msgid "Client ID" msgid "Client ID"
msgstr "" msgstr ""
@ -152,6 +161,9 @@ msgstr ""
msgid "Data Entries" msgid "Data Entries"
msgstr "" msgstr ""
msgid "Delay"
msgstr ""
msgid "Details" msgid "Details"
msgstr "" msgstr ""
@ -442,6 +454,9 @@ msgstr ""
msgid "Server Timeout" msgid "Server Timeout"
msgstr "" msgstr ""
msgid "Show Status"
msgstr ""
msgid "Silent Notification" msgid "Silent Notification"
msgstr "" msgstr ""
@ -601,6 +616,9 @@ msgstr ""
msgid "Token C" msgid "Token C"
msgstr "" msgstr ""
msgid "Topic"
msgstr ""
msgid "Transmitter Groups" msgid "Transmitter Groups"
msgstr "" msgstr ""

View File

@ -59,7 +59,7 @@ Super Toasty, Streamlabs, Stride, Syslog, Techulus Push, Telegram, Twilio,
Twitter, Twist, XBMC, XMPP, Webex Teams} Twitter, Twist, XBMC, XMPP, Webex Teams}
Name: python-%{pypi_name} Name: python-%{pypi_name}
Version: 0.9.7 Version: 0.9.8
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
@ -237,6 +237,9 @@ LANG=C.UTF-8 PYTHONPATH=%{buildroot}%{python3_sitelib} py.test-%{python3_version
%endif %endif
%changelog %changelog
* Mon Apr 18 2022 Chris Caron <lead2gold@gmail.com> - 0.9.8-1
- Updated to v0.9.8
* Wed Feb 2 2022 Chris Caron <lead2gold@gmail.com> - 0.9.7-1 * Wed Feb 2 2022 Chris Caron <lead2gold@gmail.com> - 0.9.7-1
- Updated to v0.9.7 - Updated to v0.9.7

View File

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