mirror of
https://github.com/status-im/PyGithub.git
synced 2026-09-02 03:41:08 +00:00
Small fixes in doc
This commit is contained in:
+3
-5
@@ -13,17 +13,15 @@ What's new?
|
||||
`Version 1.14.1 <https://github.com/jacquev6/PyGithub/issues?milestone=26&state=closed>`_ (April 25th, 2013)
|
||||
------------------------------------------------------------------------------------------------------------
|
||||
|
||||
* Set the default User-Agent header to "PyGithub/Python". (Github has `enforced the User Agent header <http://developer.github.com/changes/2013-04-24-user-agent-required/>`_ yesterday.)
|
||||
Thank you `jjh42 <https://github.com/jjh42>`_ for `the fix <https://github.com/jacquev6/PyGithub/pull/161>`_,
|
||||
thank you `jasenmh <https://github.com/jasenmh>`_ and `pconrad <https://github.com/pconrad>`_ for reporting `the issue <https://github.com/jacquev6/PyGithub/issues/160>`_.
|
||||
* Set the default User-Agent header to "PyGithub/Python". (Github has `enforced the User Agent header <http://developer.github.com/changes/2013-04-24-user-agent-required/>`_ yesterday.) Thank you `jjh42 <https://github.com/jjh42>`_ for `the fix <https://github.com/jacquev6/PyGithub/pull/161>`_, thank you `jasenmh <https://github.com/jasenmh>`_ and `pconrad <https://github.com/pconrad>`_ for reporting `the issue <https://github.com/jacquev6/PyGithub/issues/160>`_.
|
||||
|
||||
`Version 1.14.0 <https://github.com/jacquev6/PyGithub/issues?milestone=24&state=closed>`_ (April 22nd, 2013)
|
||||
------------------------------------------------------------------------------------------------------------
|
||||
|
||||
* `Improve <https://github.com/jacquev6/PyGithub/issues/156>`_ gist edition. Thank you `jasonwiener <https://github.com/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")})`
|
||||
* 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 <https://github.com/jacquev6/PyGithub/issues/152>`_ specific exceptions. Thank you `pconrad <https://github.com/pconrad>`_ for giving me the idea
|
||||
|
||||
|
||||
+5
-7
@@ -7,17 +7,15 @@ Stable versions
|
||||
`Version 1.14.1 <https://github.com/jacquev6/PyGithub/issues?milestone=26&state=closed>`_ (April 25th, 2013)
|
||||
------------------------------------------------------------------------------------------------------------
|
||||
|
||||
* Set the default User-Agent header to "PyGithub/Python". (Github has `enforced the User Agent header <http://developer.github.com/changes/2013-04-24-user-agent-required/>`_ yesterday.)
|
||||
Thank you `jjh42 <https://github.com/jjh42>`_ for `the fix <https://github.com/jacquev6/PyGithub/pull/161>`_,
|
||||
thank you `jasenmh <https://github.com/jasenmh>`_ and `pconrad <https://github.com/pconrad>`_ for reporting `the issue <https://github.com/jacquev6/PyGithub/issues/160>`_.
|
||||
* Set the default User-Agent header to "PyGithub/Python". (Github has `enforced the User Agent header <http://developer.github.com/changes/2013-04-24-user-agent-required/>`_ yesterday.) Thank you `jjh42 <https://github.com/jjh42>`_ for `the fix <https://github.com/jacquev6/PyGithub/pull/161>`_, thank you `jasenmh <https://github.com/jasenmh>`_ and `pconrad <https://github.com/pconrad>`_ for reporting `the issue <https://github.com/jacquev6/PyGithub/issues/160>`_.
|
||||
|
||||
`Version 1.14.0 <https://github.com/jacquev6/PyGithub/issues?milestone=24&state=closed>`_ (April 22nd, 2013)
|
||||
------------------------------------------------------------------------------------------------------------
|
||||
|
||||
* `Improve <https://github.com/jacquev6/PyGithub/issues/156>`_ gist edition. Thank you `jasonwiener <https://github.com/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")})`
|
||||
* 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 <https://github.com/jacquev6/PyGithub/issues/152>`_ specific exceptions. Thank you `pconrad <https://github.com/pconrad>`_ for giving me the idea
|
||||
|
||||
@@ -31,7 +29,7 @@ Version 1.13.1 (March 28nd, 2013)
|
||||
|
||||
* `Fix <https://github.com/jacquev6/PyGithub/issues/143>`_ for Python 3 on case-insensitive file-systems. Thank you `ptwobrussell <https://github.com/ptwobrussell>`_ for reporting
|
||||
* `Expose <https://github.com/jacquev6/PyGithub/issues/144>`_ raw data returned by Github for all objects. Thank you `ptwobrussell <https://github.com/ptwobrussell>`_ for asking
|
||||
* `Add <https://github.com/jacquev6/PyGithub/issues/145>`_ a property ``Github.per_page`` (and a parameter to the constructor) to change the number of items requested in paginated requests. Thank you again `ptwobrussell <https://github.com/ptwobrussell>`_ for asking
|
||||
* `Add <https://github.com/jacquev6/PyGithub/issues/145>`_ a property :attr:`github.MainClass.Github.per_page` (and a parameter to the constructor) to change the number of items requested in paginated requests. Thank you again `ptwobrussell <https://github.com/ptwobrussell>`_ for asking
|
||||
* `Implement <https://github.com/jacquev6/PyGithub/pull/148>`_ the first part of the `Notifications <http://developer.github.com/changes/2012-10-26-notifications-api/>`_ API. Thank you `pgolm <https://github.com/pgolm>`_
|
||||
* `Fix <https://github.com/jacquev6/PyGithub/issues/149>`_ automated tests on Python 3.3. Thank you `bkabrda <https://github.com/bkabrda>`_ for reporting
|
||||
|
||||
@@ -49,7 +47,7 @@ Version 1.12.1 (February 20th, 2013)
|
||||
---------------------------------------------------------------------------------------------------------------
|
||||
|
||||
* Much better documentation: http://jacquev6.github.com/PyGithub
|
||||
* `Implement <https://github.com/jacquev6/PyGithub/issues/140>`_ :meth:`github.Repository.Repository.get_gir_contents`. Thank you `ksookocheff-va <https://github.com/ksookocheff-va>`_ for asking
|
||||
* `Implement <https://github.com/jacquev6/PyGithub/issues/140>`_ :meth:`github.Repository.Repository.get_dir_contents`. Thank you `ksookocheff-va <https://github.com/ksookocheff-va>`_ for asking
|
||||
|
||||
`Version 1.11.1 <https://github.com/jacquev6/PyGithub/issues?milestone=21&state=closed>`_ (February 9th, 2013) (London edition)
|
||||
-------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
|
||||
# Copyright 2013 Peter Golm golm.peter@gmail.com
|
||||
# Copyright 2013 Vincent Jacques vincent@vincent-jacques.net
|
||||
# Copyright 2013 Jonathan J Hunt hunt@braincorporation.com
|
||||
|
||||
# This file is part of PyGithub. http://jacquev6.github.com/PyGithub/
|
||||
|
||||
|
||||
@@ -8,6 +8,7 @@
|
||||
# Copyright 2012 Vincent Jacques vincent@vincent-jacques.net
|
||||
# Copyright 2012 Zearin zearin@gonk.net
|
||||
# Copyright 2013 Vincent Jacques vincent@vincent-jacques.net
|
||||
# Copyright 2013 Jonathan J Hunt hunt@braincorporation.com
|
||||
|
||||
# This file is part of PyGithub. http://jacquev6.github.com/PyGithub/
|
||||
|
||||
|
||||
Reference in New Issue
Block a user