From c60e35841fea957ff002883c247457848cc53a06 Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Mon, 15 May 2023 16:48:27 -0400 Subject: [PATCH] bumped version to v1.4.0 --- apprise/__init__.py | 2 +- apprise/i18n/apprise.pot | 10 ++++++++-- packaging/man/apprise.1 | 10 ++++++++-- packaging/redhat/python-apprise.spec | 5 ++++- setup.py | 2 +- 5 files changed, 22 insertions(+), 7 deletions(-) diff --git a/apprise/__init__.py b/apprise/__init__.py index e67ce953..3a9136e9 100644 --- a/apprise/__init__.py +++ b/apprise/__init__.py @@ -31,7 +31,7 @@ # POSSIBILITY OF SUCH DAMAGE. __title__ = 'Apprise' -__version__ = '1.3.0' +__version__ = '1.4.0' __author__ = 'Chris Caron' __license__ = 'BSD' __copywrite__ = 'Copyright (C) 2023 Chris Caron ' diff --git a/apprise/i18n/apprise.pot b/apprise/i18n/apprise.pot index 677814fe..2fc34c83 100644 --- a/apprise/i18n/apprise.pot +++ b/apprise/i18n/apprise.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: apprise 1.3.0\n" +"Project-Id-Version: apprise 1.4.0\n" "Report-Msgid-Bugs-To: lead2gold@gmail.com\n" -"POT-Creation-Date: 2023-02-22 17:31-0500\n" +"POT-Creation-Date: 2023-05-15 16:33-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -454,6 +454,9 @@ msgstr "" msgid "QOS" msgstr "" +msgid "Query Method" +msgstr "" + msgid "Region" msgstr "" @@ -706,6 +709,9 @@ msgstr "" msgid "Topic" msgstr "" +msgid "Topic Thread ID" +msgstr "" + msgid "Transmitter Groups" msgstr "" diff --git a/packaging/man/apprise.1 b/packaging/man/apprise.1 index 893c07a3..736d3e3c 100644 --- a/packaging/man/apprise.1 +++ b/packaging/man/apprise.1 @@ -1,6 +1,6 @@ .\" generated with Ronn-NG/v0.9.1 .\" http://github.com/apjanke/ronn-ng/tree/0.9.1 -.TH "APPRISE" "1" "July 2022" "" +.TH "APPRISE" "1" "May 2023" "" .SH "NAME" \fBapprise\fR \- Push Notifications that work with just about every platform! .SH "SYNOPSIS" @@ -120,6 +120,7 @@ By default \fBapprise\fR looks in the following local locations for custom plugi .nf ~/\.apprise/plugins ~/\.config/apprise/plugins +/var/lib/apprise/plugins .fi .IP "" 0 .P @@ -153,6 +154,11 @@ Configuration files can be directly referenced via \fBapprise\fR when referencin ~/\.apprise/apprise\.yaml ~/\.config/apprise/apprise ~/\.config/apprise/apprise\.yaml + +/etc/apprise +/etc/apprise\.yml +/etc/apprise/apprise +/etc/apprise/apprise\.yml .fi .IP "" 0 .P @@ -173,4 +179,4 @@ $ apprise \-vv \-t "Will Be Late" \-b "Go ahead and make dinner without me" \e .SH "BUGS" If you find any bugs, please make them known at: \fIhttps://github\.com/caronc/apprise/issues\fR .SH "COPYRIGHT" -Apprise is Copyright (C) 2021 Chris Caron \fIlead2gold@gmail\.com\fR +Apprise is Copyright (C) 2023 Chris Caron \fIlead2gold@gmail\.com\fR diff --git a/packaging/redhat/python-apprise.spec b/packaging/redhat/python-apprise.spec index dd77f718..855559c6 100644 --- a/packaging/redhat/python-apprise.spec +++ b/packaging/redhat/python-apprise.spec @@ -56,7 +56,7 @@ SparkPost, Super Toasty, Streamlabs, Stride, Syslog, Techulus Push, Telegram, Twilio, Twitter, Twist, XBMC, Voipms, Vonage, Webex Teams} Name: python-%{pypi_name} -Version: 1.3.0 +Version: 1.4.0 Release: 1%{?dist} Summary: A simple wrapper to many popular notification services used today License: BSD @@ -186,6 +186,9 @@ LANG=C.UTF-8 PYTHONPATH=%{buildroot}%{python3_sitelib} py.test-%{python3_version %{python3_sitelib}/%{pypi_name}/cli.* %changelog +* Mon May 15 2023 Chris Caron - 1.4.0 +- Updated to v1.4.0 + * Wed Feb 22 2023 Chris Caron - 1.3.0 - Updated to v1.3.0 diff --git a/setup.py b/setup.py index d9e9eb3a..d59234b8 100755 --- a/setup.py +++ b/setup.py @@ -66,7 +66,7 @@ else: setup( name='apprise', - version='1.3.0', + version='1.4.0', description='Push Notifications that work with just about every platform!', license='BSD', long_description=open('README.md', encoding="utf-8").read(),