diff --git a/.mailmap b/.mailmap index 0f38635..1ac60e8 100644 --- a/.mailmap +++ b/.mailmap @@ -22,3 +22,7 @@ Kaarel Kitsemets Matthias Bartelmeß Robert Hölzl Anatoly Techtonik + +Guillermo Pérez +Matthew Duggan +Alexander Bayandin diff --git a/README.rst b/README.rst index 4fdb512..b34b328 100644 --- a/README.rst +++ b/README.rst @@ -28,6 +28,20 @@ How to install Changelog ============== +0.25.0 (2016-12-26) +------------------------- + +- Upgrade to libgit2 0.25 + `#670 `_ + +- Now Commit.tree raises an error if tree is not found + `#682 `_ + +- New settings.mwindow_mapped_limit, cached_memory, enable_caching, + cache_max_size and cache_object_limit + `#677 `_ + + 0.24.2 (2016-11-01) ------------------------- @@ -834,30 +848,30 @@ Authors Brodie Rao John Szakmeister Vlad Temian Nicolas Dandrimont David Versmisse Rémi Duraffort Santiago Perez De Rosso Sebastian Thiel Thom Wiggers - Alok Singhal Fraser Tweedale Han-Wen Nienhuys - Leonardo Rhodes Petr Viktorin Ron Cohen - Thomas Kluyver anatoly techtonik Alex Chamberlain - Alexander Bayandin Amit Bakshi Andrey Devyatkin - Arno van Lumig Ben Davis Dustin Raimondi - Eric Schrijver Greg Fitzgerald Hervé Cauwelier - Huang Huang Ian P. McCullough Igor Gnatenko - Jack O'Connor Jared Flatow Jiunn Haur Lim - Jun Omae Kaarel Kitsemets Kevin KIN-FOO - Masud Rahman Michael Sondergaard Ondřej Nový - Sarath Lakshman Vicent Marti Zoran Zaric - mrh1997 Adam Spiers Andrew Chin - András Veres-Szentkirályi Ash Berlin Benjamin Kircher - Benjamin Pollack Bryan O'Sullivan Cam Cope - Chason Chaffin Chris Rebert Colin Watson - Daniel Bruce David Fischer David Sanders - David Six Devaev Maxim Eric Davis - Erik Meusel Erik van Zijst Ferengee - Guille -bisho- Gustavo Di Pietro Holger Frey - Hugh Cole-Baker Jasper Lievisse Adriaanse Josh Bleecher Snyder - Justin Clift Kyriakos Oikonomakos Lukas Fleischer - Mathieu Bridon Nicolás Sanguinetti Noah Fontes - Óscar San José Peter Dave Hello Philippe Ombredanne - Ridge Kennedy Robert Hölzl Ross Nicoll + Alok Singhal Anatoly Techtonik Fraser Tweedale + Han-Wen Nienhuys Leonardo Rhodes Petr Viktorin + Robert Hölzl Ron Cohen Thomas Kluyver + Alex Chamberlain Alexander Bayandin Amit Bakshi + Andrey Devyatkin Arno van Lumig Ben Davis + Dustin Raimondi Eric Schrijver Greg Fitzgerald + Guillermo Pérez Hervé Cauwelier Huang Huang + Ian P. McCullough Igor Gnatenko Jack O'Connor + Jared Flatow Jiunn Haur Lim Jun Omae + Kaarel Kitsemets Kevin KIN-FOO Masud Rahman + Michael Sondergaard Ondřej Nový Sarath Lakshman + Szucs Krisztian Vicent Marti Zoran Zaric + Adam Spiers Andrew Chin András Veres-Szentkirályi + Ash Berlin Benjamin Kircher Benjamin Pollack + Bryan O'Sullivan Cam Cope Chason Chaffin + Chris Rebert Colin Watson Daniel Bruce + David Fischer David Sanders David Six + Devaev Maxim Eric Davis Erik Meusel + Erik van Zijst Ferengee Gustavo Di Pietro + Holger Frey Hugh Cole-Baker Jasper Lievisse Adriaanse + Josh Bleecher Snyder Justin Clift Kyriakos Oikonomakos + Lukas Fleischer Mathieu Bridon Nicolás Sanguinetti + Noah Fontes Óscar San José Peter Dave Hello + Philippe Ombredanne Ridge Kennedy Ross Nicoll Rui Abreu Ferreira Sheeo Soasme Vladimir Rutsky Yu Jianjian chengyuhang earl diff --git a/docs/conf.py b/docs/conf.py index 9cff9b1..a98a935 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,9 +50,9 @@ copyright = u'2010-2015 The pygit2 contributors' # built documents. # # The short X.Y version. -version = '0.24' +version = '0.25' # 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 # for a list of supported languages. diff --git a/docs/general.rst b/docs/general.rst index d17490f..e8908f6 100644 --- a/docs/general.rst +++ b/docs/general.rst @@ -18,7 +18,7 @@ library that has been built against. The version number has a .. py:data:: LIBGIT2_VER_MAJOR Integer value of the major version number. For example, for the version - ``0.24.2``:: + ``0.25.0``:: >>> print LIBGIT2_VER_MAJOR 0 @@ -26,25 +26,25 @@ library that has been built against. The version number has a .. py:data:: LIBGIT2_VER_MINOR Integer value of the minor version number. For example, for the version - ``0.24.2``:: + ``0.25.0``:: >>> print LIBGIT2_VER_MINOR - 24 + 25 .. py:data:: LIBGIT2_VER_REVISION Integer value of the revision version number. For example, for the version - ``0.24.2``:: + ``0.25.0``:: >>> print LIBGIT2_VER_REVISION - 2 + 0 .. py:data:: LIBGIT2_VERSION The libgit2 version number as a string:: >>> print LIBGIT2_VERSION - '0.24.2' + '0.25.0' Errors ====== diff --git a/pygit2/_build.py b/pygit2/_build.py index 2ef2b4c..39ff7f9 100644 --- a/pygit2/_build.py +++ b/pygit2/_build.py @@ -37,7 +37,7 @@ from os import getenv # # The version number of pygit2 # -__version__ = '0.24.2' +__version__ = '0.25.0' #