Release 0.23.3
This commit is contained in:
parent
daff45f2d4
commit
fa60e2233d
51
README.rst
51
README.rst
@ -25,6 +25,28 @@ How to install
|
||||
Changelog
|
||||
==============
|
||||
|
||||
0.23.3 (2016-01-01)
|
||||
-------------------------
|
||||
|
||||
- New ``Repository.create_blob_fromiobase(...)``
|
||||
`#490 <https://github.com/libgit2/pygit2/pull/490>`_
|
||||
`#577 <https://github.com/libgit2/pygit2/pull/577>`_
|
||||
|
||||
- New ``Repository.describe(...)``
|
||||
`#585 <https://github.com/libgit2/pygit2/pull/585>`_
|
||||
|
||||
- Fix ``Signature`` default encoding, UTF-8 now
|
||||
`#581 <https://github.com/libgit2/pygit2/issues/581>`_
|
||||
|
||||
- Fixing ``pip install pygit2``, should install cffi first
|
||||
|
||||
- Unit tests, fix binary diff test
|
||||
`#586 <https://github.com/libgit2/pygit2/pull/586>`_
|
||||
|
||||
- Document that ``Diff.patch`` can be ``None``
|
||||
`#587 <https://github.com/libgit2/pygit2/pull/587>`_
|
||||
|
||||
|
||||
0.23.2 (2015-10-11)
|
||||
-------------------------
|
||||
|
||||
@ -726,7 +748,7 @@ Other: `#331 <https://github.com/libgit2/pygit2/pull/331>`_
|
||||
Authors
|
||||
==============
|
||||
|
||||
97 developers have contributed at least 1 commit to pygit2::
|
||||
102 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
|
||||
@ -736,31 +758,32 @@ Authors
|
||||
Petr Hosek Victor Garcia Xavier Delannoy
|
||||
Yonggang Luo Patrick Steinhardt Valentin Haenel
|
||||
Michael Jones Bernardo Heynemann John Szakmeister
|
||||
Vlad Temian Brodie Rao David Versmisse
|
||||
Rémi Duraffort Santiago Perez De Rosso Sebastian Thiel
|
||||
Alok Singhal Fraser Tweedale Han-Wen Nienhuys
|
||||
Leonardo Rhodes Nicolas Dandrimont Petr Viktorin
|
||||
Vlad Temian Brodie Rao Nicolas Dandrimont
|
||||
David Versmisse Rémi Duraffort Santiago Perez De Rosso
|
||||
Sebastian Thiel 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 Michael Sondergaard Sarath Lakshman
|
||||
Vicent Marti Zoran Zaric Adam Spiers
|
||||
Andrew Chin András Veres-Szentkirályi Ash Berlin
|
||||
Benjamin Kircher Benjamin Pollack Bryan O'Sullivan
|
||||
Kevin KIN-FOO Masud Rahman Michael Sondergaard
|
||||
Sarath Lakshman Vicent Marti Zoran Zaric
|
||||
Adam Spiers Andrew Chin András Veres-Szentkirályi
|
||||
Ash Berlin Benjamin Kircher Benjamin Pollack
|
||||
Bryan O'Sullivan 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 Óscar San José
|
||||
Peter Dave Hello Philippe Ombredanne Ridge Kennedy
|
||||
Ross Nicoll Rui Abreu Ferreira Sheeo
|
||||
Soasme Vladimir Rutsky chengyuhang
|
||||
earl
|
||||
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 chengyuhang earl
|
||||
|
||||
|
||||
License
|
||||
|
@ -52,7 +52,7 @@ copyright = u'2010-2015 The pygit2 contributors'
|
||||
# The short X.Y version.
|
||||
version = '0.23'
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = '0.23.2'
|
||||
release = '0.23.3'
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# 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
|
||||
|
||||
Integer value of the major version number. For example, for the version
|
||||
``0.23.2``::
|
||||
``0.23.3``::
|
||||
|
||||
>>> 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.23.2``::
|
||||
``0.23.3``::
|
||||
|
||||
>>> print LIBGIT2_VER_MINOR
|
||||
23
|
||||
@ -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.23.2``::
|
||||
``0.23.3``::
|
||||
|
||||
>>> print LIBGIT2_VER_REVISION
|
||||
2
|
||||
3
|
||||
|
||||
.. py:data:: LIBGIT2_VERSION
|
||||
|
||||
The libgit2 version number as a string::
|
||||
|
||||
>>> print LIBGIT2_VERSION
|
||||
'0.23.2'
|
||||
'0.23.3'
|
||||
|
||||
Errors
|
||||
======
|
||||
|
@ -41,11 +41,11 @@ while the last number |lq| *.micro* |rq| auto-increments independently.
|
||||
|
||||
As illustration see this table of compatible releases:
|
||||
|
||||
+-----------+--------------------------------+--------------------------------+
|
||||
|**libgit2**| 0.23.0, 0.23.1, 0.23.2, 0.23.3 | 0.22.0, 0.22.1, 0.22.2, 0.22.3 |
|
||||
+-----------+--------------------------------+--------------------------------+
|
||||
|**pygit2** | 0.23.0, 0.23.1, 0.23.2 | 0.22.0, 0.22.1 |
|
||||
+-----------+--------------------------------+--------------------------------+
|
||||
+-----------+----------------------------------------+--------------------------------+
|
||||
|**libgit2**| 0.23.0, 0.23.1, 0.23.2, 0.23.3, 0.23.4 | 0.22.0, 0.22.1, 0.22.2, 0.22.3 |
|
||||
+-----------+----------------------------------------+--------------------------------+
|
||||
|**pygit2** | 0.23.0, 0.23.1, 0.23.2, 0.23.3 | 0.22.0, 0.22.1 |
|
||||
+-----------+----------------------------------------+--------------------------------+
|
||||
|
||||
.. warning::
|
||||
|
||||
@ -62,9 +62,9 @@ directory, do:
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
$ wget https://github.com/libgit2/libgit2/archive/v0.23.2.tar.gz
|
||||
$ tar xzf v0.23.2.tar.gz
|
||||
$ cd libgit2-0.23.2/
|
||||
$ wget https://github.com/libgit2/libgit2/archive/v0.23.4.tar.gz
|
||||
$ tar xzf v0.23.4.tar.gz
|
||||
$ cd libgit2-0.23.4/
|
||||
$ cmake .
|
||||
$ make
|
||||
$ sudo make install
|
||||
@ -146,9 +146,9 @@ Install libgit2 (see we define the installation prefix):
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
$ wget https://github.com/libgit2/libgit2/archive/v0.23.2.tar.gz
|
||||
$ tar xzf v0.23.2.tar.gz
|
||||
$ cd libgit2-0.23.2/
|
||||
$ wget https://github.com/libgit2/libgit2/archive/v0.23.4.tar.gz
|
||||
$ tar xzf v0.23.4.tar.gz
|
||||
$ cd libgit2-0.23.4/
|
||||
$ cmake . -DCMAKE_INSTALL_PREFIX=$LIBGIT2
|
||||
$ make
|
||||
$ make install
|
||||
@ -201,9 +201,9 @@ from a bash shell:
|
||||
.. code-block:: sh
|
||||
|
||||
$ export LIBGIT2=C:/Dev/libgit2
|
||||
$ wget https://github.com/libgit2/libgit2/archive/v0.23.2.tar.gz
|
||||
$ tar xzf v0.23.2.tar.gz
|
||||
$ cd libgit2-0.23.2/
|
||||
$ wget https://github.com/libgit2/libgit2/archive/v0.23.4.tar.gz
|
||||
$ tar xzf v0.23.4.tar.gz
|
||||
$ cd libgit2-0.23.4/
|
||||
$ cmake . -DSTDCALL=OFF -DCMAKE_INSTALL_PREFIX=$LIBGIT2 -G "Visual Studio 9 2008"
|
||||
$ cmake --build . --config release --target install
|
||||
$ ctest -v
|
||||
|
@ -37,7 +37,7 @@ from os import getenv
|
||||
#
|
||||
# The version number of pygit2
|
||||
#
|
||||
__version__ = '0.23.2'
|
||||
__version__ = '0.23.3'
|
||||
|
||||
|
||||
#
|
||||
|
Loading…
x
Reference in New Issue
Block a user