diff options
-rw-r--r-- | README.rst | 8 | ||||
-rw-r--r-- | pygithub3/__init__.py | 2 |
2 files changed, 7 insertions, 3 deletions
@@ -38,12 +38,16 @@ Achievements ------------- - The core -- `User service <http://developer.github.com/v3/users/>`_ +- `Users service <http://developer.github.com/v3/users/>`_ +- `Repos service <http://developer.github.com/v3/repos/>`_ +- `Gists service <http://developer.github.com/v3/gists/>`_ TODO ----- -- `Repo service <http://developer.github.com/v3/repos/>`_ +- Services: Git Data, Issues, Orgs, Pull Requests, Events +- Oauth authorization API (service?) +- Proxy methods into resources (e.g copitux.followers()) Contribute ----------- diff --git a/pygithub3/__init__.py b/pygithub3/__init__.py index f60479e..9a626f3 100644 --- a/pygithub3/__init__.py +++ b/pygithub3/__init__.py @@ -2,7 +2,7 @@ # -*- encoding: utf-8 -*- __title__ = 'pygithub3' -__version__ = '0.2' +__version__ = '0.3' __author__ = 'David Medina' __email__ = 'davidmedina9@gmail.com' __license__ = 'ISC' |