diff options
| author | Thibaut Horel <thibaut.horel@gmail.com> | 2018-05-13 11:51:57 -0400 |
|---|---|---|
| committer | Thibaut Horel <thibaut.horel@gmail.com> | 2018-05-13 11:51:57 -0400 |
| commit | 18b677479a1df007f479688a48218f20888bb2a0 (patch) | |
| tree | 400acfe28526c7cbbf9c930f9c82a92b6cbf55ab | |
| parent | dfc39d7f1c99b728119bab71402302c4836bbdec (diff) | |
| download | python-pushover-18b677479a1df007f479688a48218f20888bb2a0.tar.gz | |
Version bumpv0.4
| -rw-r--r-- | CHANGES.rst | 7 | ||||
| -rw-r--r-- | doc/conf.py | 2 | ||||
| -rw-r--r-- | pushover.py | 8 | ||||
| -rw-r--r-- | setup.py | 2 |
4 files changed, 10 insertions, 9 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index dffe593..3a7eab4 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,11 +1,12 @@ Changes ------- -0.4 (tbd) +0.4 (2018-05-13) ~~~~~~~~~~~~~~~~ -* Add support for expire and retry provided at command line. These are - required by priority 2 messages. +* Add support for ``expire`` and ``retry`` parameters to the command line for + ``priority=2`` messages +* Add support for attachments 0.3 (2016-12-29) ~~~~~~~~~~~~~~~~ diff --git a/doc/conf.py b/doc/conf.py index ed74c97..45ed9b6 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -40,7 +40,7 @@ master_doc = 'index' # General information about the project. project = u'python-pushover' -copyright = u'2013-2016' +copyright = u'2013-2018' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the diff --git a/pushover.py b/pushover.py index 8160966..06400cd 100644 --- a/pushover.py +++ b/pushover.py @@ -1,6 +1,6 @@ -# pushover 0.3 +# pushover 0.4 # -# Copyright (C) 2013-2016 Thibaut Horel <thibaut.horel@gmail.com> +# Copyright (C) 2013-2018 Thibaut Horel <thibaut.horel@gmail.com> # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -347,8 +347,8 @@ For more details and bug reports, see: https://github.com/Thibauth/python-pushov parser.add_argument("--version", "-v", action="version", help="output version information and exit", version=""" -%(prog)s 0.3 -Copyright (C) 2013-2016 Thibaut Horel <thibaut.horel@gmail.com> +%(prog)s 0.4 +Copyright (C) 2013-2018 Thibaut Horel <thibaut.horel@gmail.com> License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law.""") @@ -3,7 +3,7 @@ from setuptools import setup setup(name='python-pushover', - version='0.3', + version='0.4', description="Comprehensive bindings and command line utility for the " "Pushover notification service", long_description=open("README.rst").read() + "\n" |
