Release 0.24.1
This commit is contained in:
parent
5dcc793aff
commit
4416f65fe1
42
README.rst
42
README.rst
@ -25,6 +25,29 @@ How to install
|
|||||||
Changelog
|
Changelog
|
||||||
==============
|
==============
|
||||||
|
|
||||||
|
0.24.1 (2016-06-21)
|
||||||
|
-------------------------
|
||||||
|
|
||||||
|
- New ``Repository.listall_reference_objects()``
|
||||||
|
`#634 <https://github.com/libgit2/pygit2/pull/634>`_
|
||||||
|
|
||||||
|
- Fix ``Repository.write_archive(...)``
|
||||||
|
`#619 <https://github.com/libgit2/pygit2/pull/619>`_
|
||||||
|
`#621 <https://github.com/libgit2/pygit2/pull/621>`_
|
||||||
|
|
||||||
|
- Reproducible builds
|
||||||
|
`#636 <https://github.com/libgit2/pygit2/pull/636>`_
|
||||||
|
|
||||||
|
- Documentation fixes
|
||||||
|
`#606 <https://github.com/libgit2/pygit2/pull/606>`_
|
||||||
|
`#607 <https://github.com/libgit2/pygit2/pull/607>`_
|
||||||
|
`#609 <https://github.com/libgit2/pygit2/pull/609>`_
|
||||||
|
`#623 <https://github.com/libgit2/pygit2/pull/623>`_
|
||||||
|
|
||||||
|
- Test updates
|
||||||
|
`#629 <https://github.com/libgit2/pygit2/pull/629>`_
|
||||||
|
|
||||||
|
|
||||||
0.24.0 (2016-03-05)
|
0.24.0 (2016-03-05)
|
||||||
-------------------------
|
-------------------------
|
||||||
|
|
||||||
@ -774,7 +797,7 @@ Other: `#331 <https://github.com/libgit2/pygit2/pull/331>`_
|
|||||||
Authors
|
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
|
J. David Ibáñez Carlos Martín Nieto Nico von Geyso
|
||||||
W. Trevor King Dave Borowitz Daniel Rodríguez Troitiño
|
W. Trevor King Dave Borowitz Daniel Rodríguez Troitiño
|
||||||
@ -783,19 +806,20 @@ Authors
|
|||||||
Matthew Duggan Matthew Gamble Martin Lenders
|
Matthew Duggan Matthew Gamble Martin Lenders
|
||||||
Petr Hosek Victor Garcia Xavier Delannoy
|
Petr Hosek Victor Garcia Xavier Delannoy
|
||||||
Yonggang Luo Patrick Steinhardt Valentin Haenel
|
Yonggang Luo Patrick Steinhardt Valentin Haenel
|
||||||
Michael Jones Bernardo Heynemann John Szakmeister
|
Michael Jones Bernardo Heynemann Brodie Rao
|
||||||
Vlad Temian Brodie Rao Nicolas Dandrimont
|
John Szakmeister Vlad Temian Nicolas Dandrimont
|
||||||
David Versmisse Rémi Duraffort Santiago Perez De Rosso
|
David Versmisse Rémi Duraffort Santiago Perez De Rosso
|
||||||
Sebastian Thiel Thom Wiggers Alok Singhal
|
Sebastian Thiel Thom Wiggers Alok Singhal
|
||||||
Fraser Tweedale Han-Wen Nienhuys Leonardo Rhodes
|
Fraser Tweedale Han-Wen Nienhuys Leonardo Rhodes
|
||||||
Petr Viktorin Ron Cohen Thomas Kluyver
|
Petr Viktorin Ron Cohen Thomas Kluyver
|
||||||
Alex Chamberlain Alexander Bayandin Amit Bakshi
|
Alex Chamberlain Alexander Bayandin Amit Bakshi
|
||||||
Andrey Devyatkin Arno van Lumig Ben Davis
|
Andrey Devyatkin Arno van Lumig Ben Davis
|
||||||
Eric Schrijver Greg Fitzgerald Hervé Cauwelier
|
Dustin Raimondi Eric Schrijver Greg Fitzgerald
|
||||||
Huang Huang Ian P. McCullough Jack O'Connor
|
Hervé Cauwelier Huang Huang Ian P. McCullough
|
||||||
Jared Flatow Jiunn Haur Lim Jun Omae
|
Igor Gnatenko Jack O'Connor Jared Flatow
|
||||||
Kaarel Kitsemets Kevin KIN-FOO Masud Rahman
|
Jiunn Haur Lim Jun Omae Kaarel Kitsemets
|
||||||
Michael Sondergaard Sarath Lakshman Vicent Marti
|
Kevin KIN-FOO Masud Rahman Michael Sondergaard
|
||||||
|
Ondřej Nový Sarath Lakshman Vicent Marti
|
||||||
Zoran Zaric Adam Spiers Andrew Chin
|
Zoran Zaric Adam Spiers Andrew Chin
|
||||||
András Veres-Szentkirályi Ash Berlin Benjamin Kircher
|
András Veres-Szentkirályi Ash Berlin Benjamin Kircher
|
||||||
Benjamin Pollack Bryan O'Sullivan Cam Cope
|
Benjamin Pollack Bryan O'Sullivan Cam Cope
|
||||||
@ -810,7 +834,7 @@ Authors
|
|||||||
Óscar San José Peter Dave Hello Philippe Ombredanne
|
Óscar San José Peter Dave Hello Philippe Ombredanne
|
||||||
Ridge Kennedy Ross Nicoll Rui Abreu Ferreira
|
Ridge Kennedy Ross Nicoll Rui Abreu Ferreira
|
||||||
Sheeo Soasme Vladimir Rutsky
|
Sheeo Soasme Vladimir Rutsky
|
||||||
chengyuhang earl
|
Yu Jianjian chengyuhang earl
|
||||||
|
|
||||||
|
|
||||||
License
|
License
|
||||||
|
@ -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.0``::
|
``0.24.1``::
|
||||||
|
|
||||||
>>> print LIBGIT2_VER_MAJOR
|
>>> print LIBGIT2_VER_MAJOR
|
||||||
0
|
0
|
||||||
@ -26,7 +26,7 @@ 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.0``::
|
``0.24.1``::
|
||||||
|
|
||||||
>>> print LIBGIT2_VER_MINOR
|
>>> print LIBGIT2_VER_MINOR
|
||||||
24
|
24
|
||||||
@ -34,17 +34,17 @@ library that has been built against. The version number has a
|
|||||||
.. 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.0``::
|
``0.24.1``::
|
||||||
|
|
||||||
>>> print LIBGIT2_VER_REVISION
|
>>> print LIBGIT2_VER_REVISION
|
||||||
0
|
1
|
||||||
|
|
||||||
.. 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.0'
|
'0.24.1'
|
||||||
|
|
||||||
Errors
|
Errors
|
||||||
======
|
======
|
||||||
|
@ -43,11 +43,11 @@ while the last number |lq| *.micro* |rq| auto-increments independently.
|
|||||||
|
|
||||||
As illustration see this table of compatible releases:
|
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 |
|
|**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.23.0, 0.23.1, 0.23.2, 0.23.3 |
|
|**pygit2** | 0.24.0, 0.24.1 | 0.23.0, 0.23.1, 0.23.2, 0.23.3 |
|
||||||
+-----------+--------+----------------------------------------+
|
+-----------+----------------+----------------------------------------+
|
||||||
|
|
||||||
.. warning::
|
.. warning::
|
||||||
|
|
||||||
@ -64,9 +64,9 @@ directory, do:
|
|||||||
|
|
||||||
.. code-block:: sh
|
.. code-block:: sh
|
||||||
|
|
||||||
$ wget https://github.com/libgit2/libgit2/archive/v0.24.0.tar.gz
|
$ wget https://github.com/libgit2/libgit2/archive/v0.24.1.tar.gz
|
||||||
$ tar xzf v0.24.0.tar.gz
|
$ tar xzf v0.24.1.tar.gz
|
||||||
$ cd libgit2-0.24.0/
|
$ cd libgit2-0.24.1/
|
||||||
$ cmake .
|
$ cmake .
|
||||||
$ make
|
$ make
|
||||||
$ sudo make install
|
$ sudo make install
|
||||||
|
@ -37,7 +37,7 @@ from os import getenv
|
|||||||
#
|
#
|
||||||
# The version number of pygit2
|
# The version number of pygit2
|
||||||
#
|
#
|
||||||
__version__ = '0.24.0'
|
__version__ = '0.24.1'
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
|
Loading…
x
Reference in New Issue
Block a user