diff --git a/apprise/__init__.py b/apprise/__init__.py
index c07d769a..bb18eaec 100644
--- a/apprise/__init__.py
+++ b/apprise/__init__.py
@@ -27,7 +27,7 @@
# POSSIBILITY OF SUCH DAMAGE.
__title__ = 'Apprise'
-__version__ = '1.7.3'
+__version__ = '1.7.4'
__author__ = 'Chris Caron'
__license__ = 'BSD'
__copywrite__ = 'Copyright (C) 2024 Chris Caron http://
or https://
. By default apprise looks
in the following local locations for configuration files and loads them:
~/.apprise
-~/.apprise.yml
+~/.apprise.conf
~/.apprise.yaml
-~/.config/apprise
-~/.config/apprise.yml
+~/.config/apprise.conf
~/.config/apprise.yaml
-~/.apprise/apprise
-~/.apprise/apprise.yml
+~/.apprise/apprise.conf
~/.apprise/apprise.yaml
-~/.config/apprise/apprise
-~/.config/apprise/apprise.yml
+~/.config/apprise/apprise.conf
~/.config/apprise/apprise.yaml
-/etc/apprise
-/etc/apprise.yml
+/etc/apprise.conf
/etc/apprise.yaml
-/etc/apprise/apprise
-/etc/apprise/apprise.yml
+/etc/apprise/apprise.conf
/etc/apprise/apprise.yaml
+The configuration files specified above can also be identified with a .yml
+extension or even just entirely removing the .conf
extension altogether.
+
If a default configuration file is referenced in any way by the apprise
tool, you no longer need to provide it a Service URL. Usage of the apprise
tool simplifies to:
@@ -319,7 +316,7 @@ configuration that you want and only specifically notify a subset of them:
COPYRIGHT
-Apprise is Copyright (C) 2024 Chris Caron lead2gold@gmail.com
+Apprise is Copyright (C) 2024 Chris Caron lead2gold@gmail.com
diff --git a/packaging/redhat/python-apprise.spec b/packaging/redhat/python-apprise.spec
index 5598af03..bc86c4fb 100644
--- a/packaging/redhat/python-apprise.spec
+++ b/packaging/redhat/python-apprise.spec
@@ -54,7 +54,7 @@ Techulus Push, Telegram, Threema Gateway, Twilio, Twitter, Twist, XBMC,
Voipms, Vonage, WeCom Bot, WhatsApp, Webex Teams}
Name: python-%{pypi_name}
-Version: 1.7.3
+Version: 1.7.4
Release: 1%{?dist}
Summary: A simple wrapper to many popular notification services used today
License: BSD
@@ -195,6 +195,9 @@ LANG=C.UTF-8 PYTHONPATH=%{buildroot}%{python3_sitelib} py.test-%{python3_version
%{python3_sitelib}/%{pypi_name}/cli.*
%changelog
+* Sat Mar 9 2024 Chris Caron - 1.7.4
+- Updated to v1.7.4
+
* Sun Mar 3 2024 Chris Caron - 1.7.3
- Updated to v1.7.3
diff --git a/setup.py b/setup.py
index a96fdecd..a383d67e 100755
--- a/setup.py
+++ b/setup.py
@@ -62,7 +62,7 @@ else:
setup(
name='apprise',
- version='1.7.3',
+ version='1.7.4',
description='Push Notifications that work with just about every platform!',
license='BSD',
long_description=open('README.md', encoding="utf-8").read(),