diff --git a/README.rst b/README.rst index 07a42066..4e87d951 100644 --- a/README.rst +++ b/README.rst @@ -10,15 +10,12 @@ PyGithub is stable. I will maintain it up to date with the API, and fix bugs if What's new? =========== -Major issue (April 25th, 2013) ------------------------------- - -Github has `enforced the User Agent header `_ yesterday. -But in PyGithub, the default value is still `None`, so all scripts are broken. -We are going to fix that in `Version 1.14.1 `_ (`issue 160 `_). - -In the mean time, you can use the `user_agent` parameter of the `Github` constructor. +`Version 1.14.1 `_ (April 25th, 2013) +------------------------------------------------------------------------------------------------------------ +* Set the default User-Agent header to "PyGithub/Python". (Github has `enforced the User Agent header `_ yesterday.) +Thank you `jjh42 `_ for `the fix `_, +thank you `jasenmh `_ and `pconrad `_ for reporting `the issue `_. `Version 1.14.0 `_ (April 22nd, 2013) ------------------------------------------------------------------------------------------------------------ diff --git a/doc/changes.rst b/doc/changes.rst index 9d8573e9..9d3b700b 100644 --- a/doc/changes.rst +++ b/doc/changes.rst @@ -4,12 +4,21 @@ Change log Stable versions ~~~~~~~~~~~~~~~ +`Version 1.14.1 `_ (April 25th, 2013) +------------------------------------------------------------------------------------------------------------ + +* Set the default User-Agent header to "PyGithub/Python". (Github has `enforced the User Agent header `_ yesterday.) +Thank you `jjh42 `_ for `the fix `_, +thank you `jasenmh `_ and `pconrad `_ for reporting `the issue `_. + `Version 1.14.0 `_ (April 22nd, 2013) ------------------------------------------------------------------------------------------------------------ * `Improve `_ gist edition. Thank you `jasonwiener `_ for asking: + * Delete a file with `gist.edit(files={"name.txt": None})` * Rename a file with `gist.edit(files={"old_name.txt": github.InputFileContent(gist.files["old_name.txt"].content, new_name="new_name.txt")})` + * `Raise `_ specific exceptions. Thank you `pconrad `_ for giving me the idea Version 1.13.1 (March 28nd, 2013)