File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11recursive-include examples *
2+ include NEWS.rst
23include README.rst
34include AUTHORS
45include LICENSE
Original file line number Diff line number Diff line change 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/
Original file line number Diff line number Diff 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
99This is an experimental python library implementing all of the features
1010available in version 2 of the `Github API `_.
Original file line number Diff line number Diff line change 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"
Original file line number Diff line number Diff line change 1111 docutils
1212commands =
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]
1617deps =
You can’t perform that action at this time.
0 commit comments