Publish version 1.2

This commit is contained in:
Vincent Jacques
2012-06-29 19:30:20 +01:00
parent 2085882135
commit 2e09bb0b47
3 changed files with 9 additions and 2 deletions
+7
View File
@@ -56,6 +56,13 @@ Projects using PyGithub
History
=======
Version 1.2 (June 29th, 2012)
-----------------------------
* Implement [legacy search APIs](http://developer.github.com/v3/search/), thank you [kukuts](https://github.com/kukuts) for telling me Github had released them
* Fix a bug with issue labels containing spaces, thank you [philipkimmey](https://github.com/philipkimmey) for detecting the bug and fixing it
* Clarify how collections of objects are returned by `get_*` methods, thank you [bilderbuchi](https://github.com/bilderbuchi) for asking
Version 1.1 (June 20th, 2012)
-----------------------------
+1 -1
View File
@@ -1,5 +1,5 @@
You don't normaly create instances of any class but `Github`.
You obtain instances through calls to `get_` and `create_` methods.
You obtain instances through calls to `search_`, `get_` and `create_` methods.
Methods returning an "iterator of `SomeType`" return an iterator which yields instances of `SomeType`.
This implements lazy [pagination requests](http://developer.github.com/v3/#pagination).
+1 -1
View File
@@ -18,7 +18,7 @@ import textwrap
setup(
name = "PyGithub",
version = "1.1",
version = "1.2",
description = "Use the full Github API v3",
author = "Vincent Jacques",
author_email = "vincent@vincent-jacques.net",