bumped version to v1.7.0

This commit is contained in:
Chris Caron 2023-12-27 20:47:29 -05:00
parent d6e0d2ee07
commit c47de7fc73
5 changed files with 32 additions and 8 deletions

View File

@ -27,7 +27,7 @@
# POSSIBILITY OF SUCH DAMAGE. # POSSIBILITY OF SUCH DAMAGE.
__title__ = 'Apprise' __title__ = 'Apprise'
__version__ = '1.6.0' __version__ = '1.7.0'
__author__ = 'Chris Caron' __author__ = 'Chris Caron'
__license__ = 'BSD' __license__ = 'BSD'
__copywrite__ = 'Copyright (C) 2023 Chris Caron <lead2gold@gmail.com>' __copywrite__ = 'Copyright (C) 2023 Chris Caron <lead2gold@gmail.com>'

View File

@ -6,16 +6,16 @@
#, fuzzy #, fuzzy
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: apprise 1.6.0\n" "Project-Id-Version: apprise 1.7.0\n"
"Report-Msgid-Bugs-To: lead2gold@gmail.com\n" "Report-Msgid-Bugs-To: lead2gold@gmail.com\n"
"POT-Creation-Date: 2023-10-15 15:56-0400\n" "POT-Creation-Date: 2023-12-27 20:32-0500\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"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n" "Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.11.0\n" "Generated-By: Babel 2.12.1\n"
msgid "A local Gnome environment is required." msgid "A local Gnome environment is required."
msgstr "" msgstr ""
@ -125,6 +125,9 @@ msgstr ""
msgid "Bot Token" msgid "Bot Token"
msgstr "" msgstr ""
msgid "Bot Webhook Key"
msgstr ""
msgid "Cache Age" msgid "Cache Age"
msgstr "" msgstr ""
@ -281,6 +284,12 @@ msgstr ""
msgid "GET Params" msgid "GET Params"
msgstr "" msgstr ""
msgid "Gateway"
msgstr ""
msgid "Gateway ID"
msgstr ""
msgid "Gnome Notification" msgid "Gnome Notification"
msgstr "" msgstr ""
@ -323,6 +332,9 @@ msgstr ""
msgid "Integration Key" msgid "Integration Key"
msgstr "" msgstr ""
msgid "Interpret Emojis"
msgstr ""
msgid "Is Ad?" msgid "Is Ad?"
msgstr "" msgstr ""
@ -344,6 +356,9 @@ msgstr ""
msgid "Local File" msgid "Local File"
msgstr "" msgstr ""
msgid "Locale"
msgstr ""
msgid "Log PID" msgid "Log PID"
msgstr "" msgstr ""
@ -661,6 +676,9 @@ msgstr ""
msgid "Target Team" msgid "Target Team"
msgstr "" msgstr ""
msgid "Target Threema ID"
msgstr ""
msgid "Target Topic" msgid "Target Topic"
msgstr "" msgstr ""
@ -757,6 +775,9 @@ msgstr ""
msgid "Unicode Characters" msgid "Unicode Characters"
msgstr "" msgstr ""
msgid "Upload"
msgstr ""
msgid "Urgency" msgid "Urgency"
msgstr "" msgstr ""

View File

@ -54,7 +54,7 @@ Techulus Push, Telegram, Threema Gateway, Twilio, Twitter, Twist, XBMC,
Voipms, Vonage, WeCom Bot, WhatsApp, Webex Teams} Voipms, Vonage, WeCom Bot, WhatsApp, Webex Teams}
Name: python-%{pypi_name} Name: python-%{pypi_name}
Version: 1.6.0 Version: 1.7.0
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: BSD License: BSD
@ -195,6 +195,9 @@ LANG=C.UTF-8 PYTHONPATH=%{buildroot}%{python3_sitelib} py.test-%{python3_version
%{python3_sitelib}/%{pypi_name}/cli.* %{python3_sitelib}/%{pypi_name}/cli.*
%changelog %changelog
* Sun Oct 15 2023 Chris Caron <lead2gold@gmail.com> - 1.7.0
- Updated to v1.7.0
* Sun Oct 15 2023 Chris Caron <lead2gold@gmail.com> - 1.6.0 * Sun Oct 15 2023 Chris Caron <lead2gold@gmail.com> - 1.6.0
- Updated to v1.6.0 - Updated to v1.6.0

View File

@ -7,7 +7,7 @@ license_files = LICENSE
[flake8] [flake8]
# We exclude packages we don't maintain # We exclude packages we don't maintain
exclude = .eggs,.tox,.local exclude = .eggs,.tox,.local,dist
ignore = E741,E722,W503,W504,W605 ignore = E741,E722,W503,W504,W605
statistics = true statistics = true
builtins = _ builtins = _
@ -18,7 +18,7 @@ test=pytest
[tool:pytest] [tool:pytest]
addopts = -ra addopts = -ra
python_files = test/test_*.py python_files = test/test_*.py
norecursedirs=test/helpers norecursedirs=test/helpers, dist
filterwarnings = filterwarnings =
once::Warning once::Warning

View File

@ -62,7 +62,7 @@ else:
setup( setup(
name='apprise', name='apprise',
version='1.6.0', version='1.7.0',
description='Push Notifications that work with just about every platform!', description='Push Notifications that work with just about every platform!',
license='BSD', license='BSD',
long_description=open('README.md', encoding="utf-8").read(), long_description=open('README.md', encoding="utf-8").read(),