diff --git a/README.rst b/README.rst index b7c37ca..893b0f4 100644 --- a/README.rst +++ b/README.rst @@ -25,6 +25,29 @@ How to install Changelog ============== +0.24.1 (2016-06-21) +------------------------- + +- New ``Repository.listall_reference_objects()`` + `#634 `_ + +- Fix ``Repository.write_archive(...)`` + `#619 `_ + `#621 `_ + +- Reproducible builds + `#636 `_ + +- Documentation fixes + `#606 `_ + `#607 `_ + `#609 `_ + `#623 `_ + +- Test updates + `#629 `_ + + 0.24.0 (2016-03-05) ------------------------- @@ -774,7 +797,7 @@ Other: `#331 `_ Authors ============== -104 developers have contributed at least 1 commit to pygit2:: +108 developers have contributed at least 1 commit to pygit2:: J. David Ibáñez Carlos Martín Nieto Nico von Geyso W. Trevor King Dave Borowitz Daniel Rodríguez Troitiño @@ -783,19 +806,20 @@ Authors Matthew Duggan Matthew Gamble Martin Lenders Petr Hosek Victor Garcia Xavier Delannoy Yonggang Luo Patrick Steinhardt Valentin Haenel - Michael Jones Bernardo Heynemann John Szakmeister - Vlad Temian Brodie Rao Nicolas Dandrimont + Michael Jones Bernardo Heynemann 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 Alex Chamberlain Alexander Bayandin Amit Bakshi Andrey Devyatkin Arno van Lumig Ben Davis - Eric Schrijver Greg Fitzgerald Hervé Cauwelier - Huang Huang Ian P. McCullough Jack O'Connor - Jared Flatow Jiunn Haur Lim Jun Omae - Kaarel Kitsemets Kevin KIN-FOO Masud Rahman - Michael Sondergaard Sarath Lakshman Vicent Marti + 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 Adam Spiers Andrew Chin András Veres-Szentkirályi Ash Berlin Benjamin Kircher Benjamin Pollack Bryan O'Sullivan Cam Cope @@ -810,7 +834,7 @@ Authors Óscar San José Peter Dave Hello Philippe Ombredanne Ridge Kennedy Ross Nicoll Rui Abreu Ferreira Sheeo Soasme Vladimir Rutsky - chengyuhang earl + Yu Jianjian chengyuhang earl License diff --git a/docs/general.rst b/docs/general.rst index c84d0cb..4afdcaa 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.0``:: + ``0.24.1``:: >>> print LIBGIT2_VER_MAJOR 0 @@ -26,7 +26,7 @@ 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.0``:: + ``0.24.1``:: >>> print LIBGIT2_VER_MINOR 24 @@ -34,17 +34,17 @@ library that has been built against. The version number has a .. py:data:: LIBGIT2_VER_REVISION Integer value of the revision version number. For example, for the version - ``0.24.0``:: + ``0.24.1``:: >>> print LIBGIT2_VER_REVISION - 0 + 1 .. py:data:: LIBGIT2_VERSION The libgit2 version number as a string:: >>> print LIBGIT2_VERSION - '0.24.0' + '0.24.1' Errors ====== diff --git a/docs/install.rst b/docs/install.rst index 83c95b4..e89e841 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -43,11 +43,11 @@ while the last number |lq| *.micro* |rq| auto-increments independently. As illustration see this table of compatible releases: -+-----------+--------+----------------------------------------+ -|**libgit2**| 0.24.0 | 0.23.0, 0.23.1, 0.23.2, 0.23.3, 0.23.4 | -+-----------+--------+----------------------------------------+ -|**pygit2** | 0.24.0 | 0.23.0, 0.23.1, 0.23.2, 0.23.3 | -+-----------+--------+----------------------------------------+ ++-----------+----------------+----------------------------------------+ +|**libgit2**| 0.24.0, 0.24.1 | 0.23.0, 0.23.1, 0.23.2, 0.23.3, 0.23.4 | ++-----------+----------------+----------------------------------------+ +|**pygit2** | 0.24.0, 0.24.1 | 0.23.0, 0.23.1, 0.23.2, 0.23.3 | ++-----------+----------------+----------------------------------------+ .. warning:: @@ -64,9 +64,9 @@ directory, do: .. code-block:: sh - $ wget https://github.com/libgit2/libgit2/archive/v0.24.0.tar.gz - $ tar xzf v0.24.0.tar.gz - $ cd libgit2-0.24.0/ + $ wget https://github.com/libgit2/libgit2/archive/v0.24.1.tar.gz + $ tar xzf v0.24.1.tar.gz + $ cd libgit2-0.24.1/ $ cmake . $ make $ sudo make install diff --git a/pygit2/_build.py b/pygit2/_build.py index 533e7b9..c9a0b9c 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.0' +__version__ = '0.24.1' #