Anticipate version 0.3

This commit is contained in:
Vincent Jacques
2012-02-26 16:19:00 +00:00
parent 79a8c63096
commit 43e7670a9f
3 changed files with 20 additions and 4 deletions
+13 -1
View File
@@ -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)
---------------------------------
+6 -2
View File
@@ -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
+1 -1
View File
@@ -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',