Skip to content

Commit c47de7f

Browse files
committed
bumped version to v1.7.0
1 parent d6e0d2e commit c47de7f

File tree

5 files changed

+32
-8
lines changed

5 files changed

+32
-8
lines changed

apprise/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
# POSSIBILITY OF SUCH DAMAGE.
2828

2929
__title__ = 'Apprise'
30-
__version__ = '1.6.0'
30+
__version__ = '1.7.0'
3131
__author__ = 'Chris Caron'
3232
__license__ = 'BSD'
3333
__copywrite__ = 'Copyright (C) 2023 Chris Caron <lead2gold@gmail.com>'

apprise/i18n/apprise.pot

Lines changed: 24 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@
66
#, fuzzy
77
msgid ""
88
msgstr ""
9-
"Project-Id-Version: apprise 1.6.0\n"
9+
"Project-Id-Version: apprise 1.7.0\n"
1010
"Report-Msgid-Bugs-To: lead2gold@gmail.com\n"
11-
"POT-Creation-Date: 2023-10-15 15:56-0400\n"
11+
"POT-Creation-Date: 2023-12-27 20:32-0500\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1414
"Language-Team: LANGUAGE <LL@li.org>\n"
1515
"MIME-Version: 1.0\n"
1616
"Content-Type: text/plain; charset=utf-8\n"
1717
"Content-Transfer-Encoding: 8bit\n"
18-
"Generated-By: Babel 2.11.0\n"
18+
"Generated-By: Babel 2.12.1\n"
1919

2020
msgid "A local Gnome environment is required."
2121
msgstr ""
@@ -125,6 +125,9 @@ msgstr ""
125125
msgid "Bot Token"
126126
msgstr ""
127127

128+
msgid "Bot Webhook Key"
129+
msgstr ""
130+
128131
msgid "Cache Age"
129132
msgstr ""
130133

@@ -281,6 +284,12 @@ msgstr ""
281284
msgid "GET Params"
282285
msgstr ""
283286

287+
msgid "Gateway"
288+
msgstr ""
289+
290+
msgid "Gateway ID"
291+
msgstr ""
292+
284293
msgid "Gnome Notification"
285294
msgstr ""
286295

@@ -323,6 +332,9 @@ msgstr ""
323332
msgid "Integration Key"
324333
msgstr ""
325334

335+
msgid "Interpret Emojis"
336+
msgstr ""
337+
326338
msgid "Is Ad?"
327339
msgstr ""
328340

@@ -344,6 +356,9 @@ msgstr ""
344356
msgid "Local File"
345357
msgstr ""
346358

359+
msgid "Locale"
360+
msgstr ""
361+
347362
msgid "Log PID"
348363
msgstr ""
349364

@@ -661,6 +676,9 @@ msgstr ""
661676
msgid "Target Team"
662677
msgstr ""
663678

679+
msgid "Target Threema ID"
680+
msgstr ""
681+
664682
msgid "Target Topic"
665683
msgstr ""
666684

@@ -757,6 +775,9 @@ msgstr ""
757775
msgid "Unicode Characters"
758776
msgstr ""
759777

778+
msgid "Upload"
779+
msgstr ""
780+
760781
msgid "Urgency"
761782
msgstr ""
762783

packaging/redhat/python-apprise.spec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Techulus Push, Telegram, Threema Gateway, Twilio, Twitter, Twist, XBMC,
5454
Voipms, Vonage, WeCom Bot, WhatsApp, Webex Teams}
5555

5656
Name: python-%{pypi_name}
57-
Version: 1.6.0
57+
Version: 1.7.0
5858
Release: 1%{?dist}
5959
Summary: A simple wrapper to many popular notification services used today
6060
License: BSD
@@ -195,6 +195,9 @@ LANG=C.UTF-8 PYTHONPATH=%{buildroot}%{python3_sitelib} py.test-%{python3_version
195195
%{python3_sitelib}/%{pypi_name}/cli.*
196196

197197
%changelog
198+
* Sun Oct 15 2023 Chris Caron <lead2gold@gmail.com> - 1.7.0
199+
- Updated to v1.7.0
200+
198201
* Sun Oct 15 2023 Chris Caron <lead2gold@gmail.com> - 1.6.0
199202
- Updated to v1.6.0
200203

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license_files = LICENSE
77

88
[flake8]
99
# We exclude packages we don't maintain
10-
exclude = .eggs,.tox,.local
10+
exclude = .eggs,.tox,.local,dist
1111
ignore = E741,E722,W503,W504,W605
1212
statistics = true
1313
builtins = _
@@ -18,7 +18,7 @@ test=pytest
1818
[tool:pytest]
1919
addopts = -ra
2020
python_files = test/test_*.py
21-
norecursedirs=test/helpers
21+
norecursedirs=test/helpers, dist
2222
filterwarnings =
2323
once::Warning
2424

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262

6363
setup(
6464
name='apprise',
65-
version='1.6.0',
65+
version='1.7.0',
6666
description='Push Notifications that work with just about every platform!',
6767
license='BSD',
6868
long_description=open('README.md', encoding="utf-8").read(),

0 commit comments

Comments
 (0)