Get ready to release v0.20.0

This commit is contained in:
J. David Ibáñez
2013-11-24 15:22:10 +01:00
parent c80fb4814f
commit e6c270fe35
4 changed files with 71 additions and 58 deletions

View File

@@ -45,60 +45,73 @@ for the topic), send a pull request.
Authors Authors
============== ==============
This is the list of authors of pygit2, sorted by number of commits (as shown by 52 developers have contributed at least 1 commit to pygit2::
``git shortlog -sn``):
- J David Ibáñez J. David Ibáñez Andrey Devyatkin
- Nico von Geyso Nico von Geyso Ben Davis
- W Trevor King Carlos Martín Nieto Hervé Cauwelier
- Dave Borowitz W. Trevor King Huang Huang
- Carlos Martín Nieto Dave Borowitz Jared Flatow
- Daniel Rodríguez Troitiño Daniel Rodríguez Troitiño Jiunn Haur Lim
- Richo Healey Richo Healey Sarath Lakshman
- Christian Boos Christian Boos Vicent Marti
- Julien Miotte Julien Miotte Zoran Zaric
- Martin Lenders Martin Lenders Andrew Chin
- Xavier Delannoy Xavier Delannoy András Veres-Szentkirályi
- Yonggang Luo Yonggang Luo Benjamin Kircher
- Valentin Haenel Valentin Haenel Benjamin Pollack
- Bernardo Heynemann Xu Tao Bryan O'Sullivan
- John Szakmeister Bernardo Heynemann David Fischer
- Brodie Rao John Szakmeister David Sanders
- David Versmisse Brodie Rao Eric Davis
- Petr Hosek Petr Hosek Eric Schrijver
- Rémi Duraffort David Versmisse Erik van Zijst
- Sebastian Thiel Rémi Duraffort Ferengee
- Fraser Tweedale Sebastian Thiel Hugh Cole-Baker
- Han-Wen Nienhuys Fraser Tweedale Josh Bleecher Snyder
- Petr Viktorin Han-Wen Nienhuys Jun Omae
- Alex Chamberlain Petr Viktorin Ridge Kennedy
- Amit Bakshi Alex Chamberlain Rui Abreu Ferreira
- Andrey Devyatkin Amit Bakshi pistacchio
- Ben Davis
- Hervé Cauwelier
- Jared Flatow Changelog
- Jiunn Haur Lim ==============
- Sarath Lakshman
- Vicent Marti 0.20.0 (2013-11-24)
- Zoran Zaric -------------------
- Andrew Chin
- András Veres-Szentkirályi API changes:
- Benjamin Kircher
- Benjamin Pollack - Renamed ``Repository.head_is_orphaned`` to ``Repository.head_is_unborn``
- Bryan O'Sullivan
- David Fischer - ``Repository.listall_references`` and ``Repository.listall_branches`` now
- David Sanders return a list, instead of a tuple
- Eric Davis
- Eric Schrijver - The prototype of ``clone_repository`` changed from::
- Erik van Zijst
- Ferengee # Before
- Hugh Cole-Baker pygit2.clone_repository(url, path, bare=False, remote_name='origin',
- Josh Bleecher Snyder push_url=None, fetch_spec=None, push_spec=None,
- Jun Omae checkout_branch=None)
- Ridge Kennedy
- Rui Abreu Ferreira # Now
- Xu Tao pygit2.clone_repository(url, path, bare=False, ignore_cert_errors=False,
- pistacchio remote_name='origin', checkout_branch=None)
New API:
- Added support for blame
- New:
- ``Reference.log_append(...)``
- ``Reference.shorthand``
- ``Blog.is_binary``
- ``len(Diff)``
- ``Patch.additions``
- ``Patch.deletions``
- ``Patch.is_binary``
License License

View File

@@ -48,9 +48,9 @@ copyright = u'2013, J. David Ibáñez'
# built documents. # built documents.
# #
# The short X.Y version. # The short X.Y version.
version = '0.19' version = '0.20'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '0.19.1' release = '0.20.0'
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.

View File

@@ -26,8 +26,8 @@ When those are installed, you can install pygit2:
$ python setup.py test $ python setup.py test
.. note:: A minor version of pygit2 must be used with the corresponding minor .. note:: A minor version of pygit2 must be used with the corresponding minor
version of libgit2. For example, pygit2 v0.19.x must be used with libgit2 version of libgit2. For example, pygit2 v0.20.x must be used with libgit2
v0.19.0. v0.20.0.
Building on \*nix (including OS X) Building on \*nix (including OS X)
=================================== ===================================

View File

@@ -23,4 +23,4 @@
# the Free Software Foundation, 51 Franklin Street, Fifth Floor, # the Free Software Foundation, 51 Franklin Street, Fifth Floor,
# Boston, MA 02110-1301, USA. # Boston, MA 02110-1301, USA.
__version__ = '0.19.1' __version__ = '0.20.0'