Release 0.25.0

This commit is contained in:
J. David Ibáñez 2016-12-26 12:30:36 +01:00
parent 0b513d57fa
commit 68817aad4f
5 changed files with 51 additions and 33 deletions

@ -22,3 +22,7 @@ Kaarel Kitsemets <kitsemets@gmail.com>
Matthias Bartelmeß <mba@fourplusone.de> Matthias Bartelmeß <mba@fourplusone.de>
Robert Hölzl <robert.hoelzl@posteo.de> Robert Hölzl <robert.hoelzl@posteo.de>
Anatoly Techtonik <techtonik@gmail.com> Anatoly Techtonik <techtonik@gmail.com>
Guillermo Pérez <bisho@fb.com> <bisho@freedreams.org>
Matthew Duggan <mduggan@qti.qualcomm.com> <mgithub@guarana.org>
Alexander Bayandin <a.bayandin@gmail.com> <bayandin@users.noreply.github.com>

@ -28,6 +28,20 @@ How to install
Changelog Changelog
============== ==============
0.25.0 (2016-12-26)
-------------------------
- Upgrade to libgit2 0.25
`#670 <https://github.com/libgit2/pygit2/pull/670>`_
- Now Commit.tree raises an error if tree is not found
`#682 <https://github.com/libgit2/pygit2/pull/682>`_
- New settings.mwindow_mapped_limit, cached_memory, enable_caching,
cache_max_size and cache_object_limit
`#677 <https://github.com/libgit2/pygit2/pull/677>`_
0.24.2 (2016-11-01) 0.24.2 (2016-11-01)
------------------------- -------------------------
@ -834,30 +848,30 @@ Authors
Brodie Rao John Szakmeister Vlad Temian Brodie Rao John Szakmeister Vlad Temian
Nicolas Dandrimont David Versmisse Rémi Duraffort Nicolas Dandrimont David Versmisse Rémi Duraffort
Santiago Perez De Rosso Sebastian Thiel Thom Wiggers Santiago Perez De Rosso Sebastian Thiel Thom Wiggers
Alok Singhal Fraser Tweedale Han-Wen Nienhuys Alok Singhal Anatoly Techtonik Fraser Tweedale
Leonardo Rhodes Petr Viktorin Ron Cohen Han-Wen Nienhuys Leonardo Rhodes Petr Viktorin
Thomas Kluyver anatoly techtonik Alex Chamberlain Robert Hölzl Ron Cohen Thomas Kluyver
Alexander Bayandin Amit Bakshi Andrey Devyatkin Alex Chamberlain Alexander Bayandin Amit Bakshi
Arno van Lumig Ben Davis Dustin Raimondi Andrey Devyatkin Arno van Lumig Ben Davis
Eric Schrijver Greg Fitzgerald Hervé Cauwelier Dustin Raimondi Eric Schrijver Greg Fitzgerald
Huang Huang Ian P. McCullough Igor Gnatenko Guillermo Pérez Hervé Cauwelier Huang Huang
Jack O'Connor Jared Flatow Jiunn Haur Lim Ian P. McCullough Igor Gnatenko Jack O'Connor
Jun Omae Kaarel Kitsemets Kevin KIN-FOO Jared Flatow Jiunn Haur Lim Jun Omae
Masud Rahman Michael Sondergaard Ondřej Nový Kaarel Kitsemets Kevin KIN-FOO Masud Rahman
Sarath Lakshman Vicent Marti Zoran Zaric Michael Sondergaard Ondřej Nový Sarath Lakshman
mrh1997 Adam Spiers Andrew Chin Szucs Krisztian Vicent Marti Zoran Zaric
András Veres-Szentkirályi Ash Berlin Benjamin Kircher Adam Spiers Andrew Chin András Veres-Szentkirályi
Benjamin Pollack Bryan O'Sullivan Cam Cope Ash Berlin Benjamin Kircher Benjamin Pollack
Chason Chaffin Chris Rebert Colin Watson Bryan O'Sullivan Cam Cope Chason Chaffin
Daniel Bruce David Fischer David Sanders Chris Rebert Colin Watson Daniel Bruce
David Six Devaev Maxim Eric Davis David Fischer David Sanders David Six
Erik Meusel Erik van Zijst Ferengee Devaev Maxim Eric Davis Erik Meusel
Guille -bisho- Gustavo Di Pietro Holger Frey Erik van Zijst Ferengee Gustavo Di Pietro
Hugh Cole-Baker Jasper Lievisse Adriaanse Josh Bleecher Snyder Holger Frey Hugh Cole-Baker Jasper Lievisse Adriaanse
Justin Clift Kyriakos Oikonomakos Lukas Fleischer Josh Bleecher Snyder Justin Clift Kyriakos Oikonomakos
Mathieu Bridon Nicolás Sanguinetti Noah Fontes Lukas Fleischer Mathieu Bridon Nicolás Sanguinetti
Óscar San José Peter Dave Hello Philippe Ombredanne Noah Fontes Óscar San José Peter Dave Hello
Ridge Kennedy Robert Hölzl Ross Nicoll Philippe Ombredanne Ridge Kennedy Ross Nicoll
Rui Abreu Ferreira Sheeo Soasme Rui Abreu Ferreira Sheeo Soasme
Vladimir Rutsky Yu Jianjian chengyuhang Vladimir Rutsky Yu Jianjian chengyuhang
earl earl

@ -50,9 +50,9 @@ copyright = u'2010-2015 The pygit2 contributors'
# built documents. # built documents.
# #
# The short X.Y version. # The short X.Y version.
version = '0.24' version = '0.25'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '0.24.2' release = '0.25.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.

@ -18,7 +18,7 @@ library that has been built against. The version number has a
.. py:data:: LIBGIT2_VER_MAJOR .. py:data:: LIBGIT2_VER_MAJOR
Integer value of the major version number. For example, for the version Integer value of the major version number. For example, for the version
``0.24.2``:: ``0.25.0``::
>>> print LIBGIT2_VER_MAJOR >>> print LIBGIT2_VER_MAJOR
0 0
@ -26,25 +26,25 @@ library that has been built against. The version number has a
.. py:data:: LIBGIT2_VER_MINOR .. py:data:: LIBGIT2_VER_MINOR
Integer value of the minor version number. For example, for the version Integer value of the minor version number. For example, for the version
``0.24.2``:: ``0.25.0``::
>>> print LIBGIT2_VER_MINOR >>> print LIBGIT2_VER_MINOR
24 25
.. py:data:: LIBGIT2_VER_REVISION .. py:data:: LIBGIT2_VER_REVISION
Integer value of the revision version number. For example, for the version Integer value of the revision version number. For example, for the version
``0.24.2``:: ``0.25.0``::
>>> print LIBGIT2_VER_REVISION >>> print LIBGIT2_VER_REVISION
2 0
.. py:data:: LIBGIT2_VERSION .. py:data:: LIBGIT2_VERSION
The libgit2 version number as a string:: The libgit2 version number as a string::
>>> print LIBGIT2_VERSION >>> print LIBGIT2_VERSION
'0.24.2' '0.25.0'
Errors Errors
====== ======

@ -37,7 +37,7 @@ from os import getenv
# #
# The version number of pygit2 # The version number of pygit2
# #
__version__ = '0.24.2' __version__ = '0.25.0'
# #