Skip to content

Commit 18b6774

Browse files
committed
Version bump
1 parent dfc39d7 commit 18b6774

4 files changed

Lines changed: 10 additions & 9 deletions

File tree

CHANGES.rst

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
Changes
22
-------
33

4-
0.4 (tbd)
4+
0.4 (2018-05-13)
55
~~~~~~~~~~~~~~~~
66

7-
* Add support for expire and retry provided at command line. These are
8-
required by priority 2 messages.
7+
* Add support for ``expire`` and ``retry`` parameters to the command line for
8+
``priority=2`` messages
9+
* Add support for attachments
910

1011
0.3 (2016-12-29)
1112
~~~~~~~~~~~~~~~~

doc/conf.py

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

4141
# General information about the project.
4242
project = u'python-pushover'
43-
copyright = u'2013-2016'
43+
copyright = u'2013-2018'
4444

4545
# The version info for the project you're documenting, acts as replacement for
4646
# |version| and |release|, also used in various other places throughout the

pushover.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# pushover 0.3
1+
# pushover 0.4
22
#
3-
# Copyright (C) 2013-2016 Thibaut Horel <thibaut.horel@gmail.com>
3+
# Copyright (C) 2013-2018 Thibaut Horel <thibaut.horel@gmail.com>
44

55
# This program is free software: you can redistribute it and/or modify
66
# it under the terms of the GNU General Public License as published by
@@ -347,8 +347,8 @@ def main():
347347
parser.add_argument("--version", "-v", action="version",
348348
help="output version information and exit",
349349
version="""
350-
%(prog)s 0.3
351-
Copyright (C) 2013-2016 Thibaut Horel <thibaut.horel@gmail.com>
350+
%(prog)s 0.4
351+
Copyright (C) 2013-2018 Thibaut Horel <thibaut.horel@gmail.com>
352352
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
353353
This is free software: you are free to change and redistribute it.
354354
There is NO WARRANTY, to the extent permitted by law.""")

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from setuptools import setup
44

55
setup(name='python-pushover',
6-
version='0.3',
6+
version='0.4',
77
description="Comprehensive bindings and command line utility for the "
88
"Pushover notification service",
99
long_description=open("README.rst").read() + "\n"

0 commit comments

Comments
 (0)