diff --git a/ReadMe.md b/ReadMe.md index 3d074b43..d2b4fc4a 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -1,6 +1,6 @@ This is a Python library to access the [Gitub API v3](http://developer.github.com/v3). -With it, you can manage your repositories, your organizations and your user profile from Python scripts. +With it, you can manage your Github resources (repositories, user profiles, organizations, etc.) from Python scripts. It is still a work in progress, but I'm sure I'll finish it soon. The aim is to cover the **full** API in version 1.0. @@ -28,6 +28,18 @@ Then play with your Github objects: History ======= +Version 0.3 (February 26th, 2012) +--------------------------------- + +* More refactoring +* Issues, milestones and their labels +* NamedUser: + * emails +* Repository: + * downloads + * tags, branches, commits and comments (not the same as "Git objects" of version 0.2) +* Automatic generation of the reference documentation of classes, with less "see API"s, and less errors + Version 0.2 (February 23rd, 2012) --------------------------------- diff --git a/RoadMap.md b/RoadMap.md index 2ae81bbf..d3478eaa 100644 --- a/RoadMap.md +++ b/RoadMap.md @@ -1,10 +1,14 @@ Planned releases ================ -(updated February 19th 2012) +(updated February 26th 2012) * Partial releases (versions 0.x) - * implementation of other object types (git objects in priority) + * implementation of other object types: + * Authorizations and keys + * Events and hooks + * Gists + * Pull requests * First full release (version 1.0, planned mid-March) * full coverage of the API diff --git a/setup.py b/setup.py index e29d33eb..fa850091 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ import textwrap setup( name = 'PyGithub', - version = '0.2', + version = '0.3', description = 'Use the full Github API v3', author = 'Vincent Jacques', author_email = 'vincent@vincent-jacques.net',