Skip to content

Commit 669cb27

Browse files
committed
Version bump
1 parent b9a012d commit 669cb27

File tree

7 files changed

+16
-7
lines changed

7 files changed

+16
-7
lines changed

AUTHORS.rst

+3
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,8 @@ Contributors
33

44
* Sam Birch <sam.m.birch@gmail.com>
55
* Crupuk
6+
* chevell
7+
* drachenminister
68
* Thibaut Horel <thibaut.horel@gmail.com>
79
* Filip Lundborg <filip@filipl.se>
10+
* Philip Lundrigan <philipbl@cs.utah.edu>

CHANGES.rst

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
Changes
22
-------
33

4-
0.x
5-
~~~
4+
0.3 (2016-12-29)
5+
~~~~~~~~~~~~~~~~
66

7+
* Add support for the Glances API
8+
* Add a ``cancel`` function to ``MessageRequest`` objects to cancel high
9+
priority messages
10+
* Add support for html message styling
711
* Fix bug in MessageRequest.poll for ``priority=2`` requests
812

913
0.2 (2014-08-16)

doc/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# You can set these variables from the command line.
55
SPHINXOPTS =
6-
SPHINXBUILD = sphinx-build2
6+
SPHINXBUILD = sphinx-build
77
PAPER =
88
BUILDDIR = build
99

doc/conf.py

+1-1
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'
43+
copyright = u'2013-2016'
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

doc/index.rst

+2
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,5 @@ API
1010
.. automodule:: pushover
1111
:members:
1212
:show-inheritance:
13+
14+
.. include:: ../CHANGES.rst

pushover.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ def main():
330330
parser.add_argument("--user-key", "-u", help="Pushover user key")
331331
parser.add_argument("message", help="message to send")
332332
parser.add_argument("--title", "-t", help="message title")
333-
parser.add_argument("--priority", "-p", help="message priority")
333+
parser.add_argument("--priority", "-p", help="message priority (-1, 0, 1 or 2)")
334334
parser.add_argument("--url", help="additional url")
335335
parser.add_argument("--url-title", help="additional url title")
336336
parser.add_argument("-c", "--config", help="configuration file\
@@ -342,7 +342,7 @@ def main():
342342
help="output version information and exit",
343343
version="""
344344
%(prog)s 0.2
345-
Copyright (C) 2013-2014 Thibaut Horel <thibaut.horel@gmail.com>
345+
Copyright (C) 2013-2016 Thibaut Horel <thibaut.horel@gmail.com>
346346
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
347347
This is free software: you are free to change and redistribute it.
348348
There is NO WARRANTY, to the extent permitted by law.""")

setup.py

+1-1
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.2',
6+
version='0.3',
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)