Skip to content

Commit 573da98

Browse files
committed
Bumped version to 0.3.0.
1 parent d1d7f5a commit 573da98

5 files changed

Lines changed: 30 additions & 2 deletions

File tree

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
recursive-include examples *
2+
include NEWS.rst
23
include README.rst
34
include AUTHORS
45
include LICENSE

NEWS.rst

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
User-visible changes
2+
====================
3+
4+
.. contents::
5+
6+
0.3.0 - 2011-04-13
7+
------------------
8+
9+
* Caching support, see the ``cache`` keyword of ``github.client.Github``
10+
* OAuth2_ authentication support
11+
* Additional ``issues`` support:
12+
13+
+ Searching issues with ``issues.search``
14+
+ List issues by label with ``issues.list_by_label``
15+
+ List all project labels with ``issues.list_labels``
16+
+ Edit an existing issue with ``issues.edit``
17+
+ Reopen closed issues with ``issues.reopen``
18+
19+
* Additional ``repos`` support
20+
21+
+ List non-owned projects that you have push rights to with ``repos.pushable``
22+
23+
* Requires httplib2_
24+
25+
.. _OAuth2: http://develop.github.com/p/oauth.html
26+
.. _httplib2: http://code.google.com/p/httplib2/

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ python-github2 - Github API v2 library for Python.
44

55
:Authors:
66
Ask Solem (askh@opera.com)
7-
:Version: 0.2.0
7+
:Version: 0.3.0
88

99
This is an experimental python library implementing all of the features
1010
available in version 2 of the `Github API`_.

github2/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"Github API v2 library for Python"
2-
VERSION = (0, 2, 0)
2+
VERSION = (0, 3, 0)
33

44
__author__ = "Ask Solem"
55
__contact__ = "askh@opera.com"

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ deps =
1111
docutils
1212
commands =
1313
mkdir -p {envtmpdir}
14+
rst2html.py --strict NEWS.rst {envtmpdir}/NEWS.html
1415
rst2html.py --strict README.rst {envtmpdir}/README.html
1516
[testenv:sphinx]
1617
deps =

0 commit comments

Comments
 (0)