Get ready to release v0.22.1

This commit is contained in:
J. David Ibáñez
2015-07-12 12:04:58 +02:00
parent 7ff6f6efb7
commit 2fdfdcdc4b
4 changed files with 41 additions and 30 deletions

View File

@@ -16,3 +16,5 @@ Xu Tao <xutao881001@gmail.com>
Vlad Temian <vladtemian@gmail.com> Vlad Temian <vladtemian@gmail.com>
Matthew Gamble <git@matthewgamble.net> Matthew Gamble <git@matthewgamble.net>
Kaarel Kitsemets <kitsemets@gmail.com>

View File

@@ -25,7 +25,7 @@ How to install
Changelog Changelog
============== ==============
0.22.1 (not yet released) 0.22.1 (2015-07-12)
------------------------- -------------------------
Diff interface refactoring Diff interface refactoring
@@ -89,6 +89,9 @@ New features:
- New ``level`` optional parameter in ``Index.remove`` - New ``level`` optional parameter in ``Index.remove``
`#533 <https://github.com/libgit2/pygit2/pull/533>`_ `#533 <https://github.com/libgit2/pygit2/pull/533>`_
- New ``repr(TreeEntry)``
`#543 <https://github.com/libgit2/pygit2/pull/543>`_
Build and install improvements: Build and install improvements:
- Make pygit work in a frozen environment - Make pygit work in a frozen environment
@@ -130,6 +133,7 @@ Other:
`#521 <https://github.com/libgit2/pygit2/pull/521>`_ `#521 <https://github.com/libgit2/pygit2/pull/521>`_
`#523 <https://github.com/libgit2/pygit2/pull/523>`_ `#523 <https://github.com/libgit2/pygit2/pull/523>`_
`#527 <https://github.com/libgit2/pygit2/pull/527>`_ `#527 <https://github.com/libgit2/pygit2/pull/527>`_
`#536 <https://github.com/libgit2/pygit2/pull/536>`_
- Expose the ``pygit2.GIT_REPOSITORY_INIT_*`` constants - Expose the ``pygit2.GIT_REPOSITORY_INIT_*`` constants
`#483 <https://github.com/libgit2/pygit2/issues/483>`_ `#483 <https://github.com/libgit2/pygit2/issues/483>`_
@@ -612,34 +616,39 @@ Other: `#331 <https://github.com/libgit2/pygit2/pull/331>`_
Authors Authors
============== ==============
83 developers have contributed at least 1 commit to pygit2:: 93 developers have contributed at least 1 commit to pygit2::
J. David Ibáñez Sebastian Thiel András Veres-Szentkirályi J. David Ibáñez Carlos Martín Nieto Nico von Geyso
Carlos Martín Nieto Fraser Tweedale Ash Berlin W. Trevor King Dave Borowitz Daniel Rodríguez Troitiño
Nico von Geyso Han-Wen Nienhuys Benjamin Kircher Richo Healey Christian Boos Julien Miotte
W. Trevor King Leonardo Rhodes Benjamin Pollack Richard Möhn Xu Tao Jose Plana
Dave Borowitz Petr Viktorin Bryan O'Sullivan Matthew Duggan Matthew Gamble Martin Lenders
Daniel Rodríguez Troitiño Ron Cohen Daniel Bruce Petr Hosek Victor Garcia Xavier Delannoy
Richo Healey Thomas Kluyver David Fischer Yonggang Luo Patrick Steinhardt Valentin Haenel
Christian Boos Alex Chamberlain David Sanders Michael Jones Bernardo Heynemann John Szakmeister
Julien Miotte Alexander Bayandin Devaev Maxim Vlad Temian Brodie Rao David Versmisse
Xu Tao Amit Bakshi Eric Davis Rémi Duraffort Sebastian Thiel Alok Singhal
Jose Plana Andrey Devyatkin Erik Meusel Fraser Tweedale Han-Wen Nienhuys Leonardo Rhodes
Matthew Gamble Arno van Lumig Erik van Zijst Petr Viktorin Ron Cohen Santiago Perez De Rosso
Martin Lenders Ben Davis Ferengee Thomas Kluyver Alex Chamberlain Alexander Bayandin
Petr Hosek Eric Schrijver Gustavo Di Pietro Amit Bakshi Andrey Devyatkin Arno van Lumig
Victor Garcia Hervé Cauwelier Hugh Cole-Baker Ben Davis Eric Schrijver Greg Fitzgerald
Xavier Delannoy Huang Huang Jasper Lievisse Adriaanse Hervé Cauwelier Huang Huang Ian P. McCullough
Yonggang Luo Ian P. McCullough Josh Bleecher Snyder Jack O'Connor Jared Flatow Jiunn Haur Lim
Valentin Haenel Jack O'Connor Kyriakos Oikonomakos Jun Omae Kaarel Kitsemets Kevin KIN-FOO
Michael Jones Jared Flatow Mathieu Bridon Sarath Lakshman Vicent Marti Zoran Zaric
Bernardo Heynemann Jiunn Haur Lim Óscar San José Adam Spiers Andrew Chin András Veres-Szentkirályi
John Szakmeister Jun Omae Ridge Kennedy Ash Berlin Benjamin Kircher Benjamin Pollack
Matthew Duggan Sarath Lakshman Rui Abreu Ferreira Bryan O'Sullivan Colin Watson Daniel Bruce
Brodie Rao Vicent Marti Soasme David Fischer David Sanders Devaev Maxim
Vlad Temian Zoran Zaric chengyuhang Eric Davis Erik Meusel Erik van Zijst
David Versmisse Adam Spiers earl Ferengee Gustavo Di Pietro Holger Frey
Rémi Duraffort Andrew Chin Hugh Cole-Baker Jasper Lievisse Josh Bleecher Snyder
Justin Clift Kyriakos Oikonomakos Lukas Fleischer
Mathieu Bridon Michael Sondergaard Óscar San José
Peter Dave Hello Philippe Ombredanne Ridge Kennedy
Ross Nicoll Rui Abreu Ferreira Soasme
Vladimir Rutsky chengyuhang earl
License License

View File

@@ -52,7 +52,7 @@ copyright = u'2010-2014 The pygit2 contributors'
# The short X.Y version. # The short X.Y version.
version = '0.22' version = '0.22'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '0.22.0' release = '0.22.1'
# 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

@@ -42,7 +42,7 @@ import sys
# #
# The version number of pygit2 # The version number of pygit2
# #
__version__ = '0.22.0' __version__ = '0.22.1'
# #