diff --git a/ReadMe.md b/ReadMe.md index 4d718c62..2d98c610 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -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) ----------------------------- diff --git a/doc/ReferenceOfClasses.md b/doc/ReferenceOfClasses.md index efbff446..485c5348 100644 --- a/doc/ReferenceOfClasses.md +++ b/doc/ReferenceOfClasses.md @@ -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). diff --git a/setup.py b/setup.py index b9c700b1..0dbac04a 100644 --- a/setup.py +++ b/setup.py @@ -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",