Get ready for 0.21.1 release
This commit is contained in:
98
README.rst
98
README.rst
@@ -9,77 +9,23 @@ Pygit2 is a set of Python bindings to the libgit2 shared library, libgit2
|
|||||||
implements the core of Git. Pygit2 works with Python 2.7, 3.2, 3.3, 3.4 and
|
implements the core of Git. Pygit2 works with Python 2.7, 3.2, 3.3, 3.4 and
|
||||||
pypy.
|
pypy.
|
||||||
|
|
||||||
It is likely to work with Python 2.6 and 3.1, but these versions are not
|
Links:
|
||||||
officially supported.
|
|
||||||
|
|
||||||
|
|
||||||
Pygit2 links:
|
|
||||||
|
|
||||||
- http://github.com/libgit2/pygit2 -- Source code and issue tracker
|
- http://github.com/libgit2/pygit2 -- Source code and issue tracker
|
||||||
- http://www.pygit2.org/ -- Documentation
|
- http://www.pygit2.org/ -- Documentation
|
||||||
- http://pypi.python.org/pypi/pygit2 -- Download
|
- http://pypi.python.org/pypi/pygit2 -- Download
|
||||||
|
|
||||||
|
|
||||||
Quick install guide
|
How to install
|
||||||
===================
|
|
||||||
|
|
||||||
1. Checkout the libgit2 release which corresponds to the pygit2 version::
|
|
||||||
|
|
||||||
$ git clone git://github.com/libgit2/libgit2.git -b 0.21.0
|
|
||||||
|
|
||||||
2. Build and install libgit2
|
|
||||||
https://github.com/libgit2/libgit2/#building-libgit2---using-cmake
|
|
||||||
|
|
||||||
3. Install pygit2 with *pip*::
|
|
||||||
|
|
||||||
$ pip install cffi
|
|
||||||
$ pip install pygit2
|
|
||||||
|
|
||||||
For detailed instructions check the documentation,
|
|
||||||
http://www.pygit2.org/install.html
|
|
||||||
|
|
||||||
|
|
||||||
Contributing
|
|
||||||
============
|
|
||||||
|
|
||||||
Fork libgit2/pygit2 on GitHub, make it awesomer (preferably in a branch named
|
|
||||||
for the topic), send a pull request.
|
|
||||||
|
|
||||||
|
|
||||||
Authors
|
|
||||||
==============
|
==============
|
||||||
|
|
||||||
66 developers have contributed at least 1 commit to pygit2::
|
- Check http://www.pygit2.org/install.html
|
||||||
|
|
||||||
J. David Ibáñez Rémi Duraffort Adam Spiers
|
|
||||||
Nico von Geyso Sebastian Thiel Alexander Bayandin
|
|
||||||
Carlos Martín Nieto Fraser Tweedale Andrew Chin
|
|
||||||
W. Trevor King Han-Wen Nienhuys András Veres-Szentkirályi
|
|
||||||
Dave Borowitz Leonardo Rhodes Benjamin Kircher
|
|
||||||
Daniel Rodríguez Troitiño Petr Viktorin Benjamin Pollack
|
|
||||||
Richo Healey Thomas Kluyver Bryan O'Sullivan
|
|
||||||
Christian Boos Alex Chamberlain Daniel Bruce
|
|
||||||
Julien Miotte Amit Bakshi David Fischer
|
|
||||||
Xu Tao Andrey Devyatkin David Sanders
|
|
||||||
Jose Plana Ben Davis Devaev Maxim
|
|
||||||
Martin Lenders Eric Schrijver Eric Davis
|
|
||||||
Petr Hosek Hervé Cauwelier Erik Meusel
|
|
||||||
Victor Garcia Huang Huang Erik van Zijst
|
|
||||||
Xavier Delannoy Ian P. McCullough Ferengee
|
|
||||||
Yonggang Luo Jack O'Connor Gustavo Di Pietro
|
|
||||||
Valentin Haenel Jared Flatow Hugh Cole-Baker
|
|
||||||
Michael Jones Jiunn Haur Lim Josh Bleecher Snyder
|
|
||||||
Bernardo Heynemann Jun Omae Óscar San José
|
|
||||||
John Szakmeister Sarath Lakshman Ridge Kennedy
|
|
||||||
Brodie Rao Vicent Marti Rui Abreu Ferreira
|
|
||||||
David Versmisse Zoran Zaric earl
|
|
||||||
|
|
||||||
|
|
||||||
Changelog
|
Changelog
|
||||||
==============
|
==============
|
||||||
|
|
||||||
|
0.21.1 (2014-07-22)
|
||||||
0.21.1 (2014-0X-XX)
|
|
||||||
-------------------
|
-------------------
|
||||||
|
|
||||||
- Install fix
|
- Install fix
|
||||||
@@ -99,19 +45,22 @@ Changelog
|
|||||||
- New ``Repository.state_cleanup()``
|
- New ``Repository.state_cleanup()``
|
||||||
`#386 <https://github.com/libgit2/pygit2/pull/386>`_
|
`#386 <https://github.com/libgit2/pygit2/pull/386>`_
|
||||||
|
|
||||||
- New ```Index.conflicts``
|
- New ``Index.conflicts``
|
||||||
`#345 <https://github.com/libgit2/pygit2/issues/345>`_
|
`#345 <https://github.com/libgit2/pygit2/issues/345>`_
|
||||||
`#389 <https://github.com/libgit2/pygit2/pull/389>`_
|
`#389 <https://github.com/libgit2/pygit2/pull/389>`_
|
||||||
|
|
||||||
- New checkout option to define the target directory
|
- New checkout option to define the target directory
|
||||||
`#390 <https://github.com/libgit2/pygit2/pull/390>`_
|
`#390 <https://github.com/libgit2/pygit2/pull/390>`_
|
||||||
|
|
||||||
|
|
||||||
|
Backward incompatible changes:
|
||||||
|
|
||||||
- Now the checkout strategy must be a keyword argument.
|
- Now the checkout strategy must be a keyword argument.
|
||||||
|
|
||||||
Change ``Repository.checkout(refname, strategy)`` to
|
Change ``Repository.checkout(refname, strategy)`` to
|
||||||
``Repository.checkout(refname, strategy=strategy)``
|
``Repository.checkout(refname, strategy=strategy)``
|
||||||
|
|
||||||
Idem for checkout_head checkout_index and checkout_tree
|
Idem for ``checkout_head``, ``checkout_index`` and ``checkout_tree``
|
||||||
|
|
||||||
|
|
||||||
0.21.0 (2014-06-27)
|
0.21.0 (2014-06-27)
|
||||||
@@ -384,6 +333,35 @@ Other: `#331 <https://github.com/libgit2/pygit2/pull/331>`_
|
|||||||
`#289 <https://github.com/libgit2/pygit2/pull/289>`_
|
`#289 <https://github.com/libgit2/pygit2/pull/289>`_
|
||||||
|
|
||||||
|
|
||||||
|
Authors
|
||||||
|
==============
|
||||||
|
|
||||||
|
66 developers have contributed at least 1 commit to pygit2::
|
||||||
|
|
||||||
|
J. David Ibáñez Rémi Duraffort Adam Spiers
|
||||||
|
Nico von Geyso Sebastian Thiel Alexander Bayandin
|
||||||
|
Carlos Martín Nieto Fraser Tweedale Andrew Chin
|
||||||
|
W. Trevor King Han-Wen Nienhuys András Veres-Szentkirályi
|
||||||
|
Dave Borowitz Leonardo Rhodes Benjamin Kircher
|
||||||
|
Daniel Rodríguez Troitiño Petr Viktorin Benjamin Pollack
|
||||||
|
Richo Healey Thomas Kluyver Bryan O'Sullivan
|
||||||
|
Christian Boos Alex Chamberlain Daniel Bruce
|
||||||
|
Julien Miotte Amit Bakshi David Fischer
|
||||||
|
Xu Tao Andrey Devyatkin David Sanders
|
||||||
|
Jose Plana Ben Davis Devaev Maxim
|
||||||
|
Martin Lenders Eric Schrijver Eric Davis
|
||||||
|
Petr Hosek Hervé Cauwelier Erik Meusel
|
||||||
|
Victor Garcia Huang Huang Erik van Zijst
|
||||||
|
Xavier Delannoy Ian P. McCullough Ferengee
|
||||||
|
Yonggang Luo Jack O'Connor Gustavo Di Pietro
|
||||||
|
Valentin Haenel Jared Flatow Hugh Cole-Baker
|
||||||
|
Michael Jones Jiunn Haur Lim Josh Bleecher Snyder
|
||||||
|
Bernardo Heynemann Jun Omae Óscar San José
|
||||||
|
John Szakmeister Sarath Lakshman Ridge Kennedy
|
||||||
|
Brodie Rao Vicent Marti Rui Abreu Ferreira
|
||||||
|
David Versmisse Zoran Zaric earl
|
||||||
|
|
||||||
|
|
||||||
License
|
License
|
||||||
==============
|
==============
|
||||||
|
|
||||||
|
@@ -50,7 +50,7 @@ copyright = u'2010-2014 The pygit2 contributors'
|
|||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = '0.21'
|
version = '0.21'
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = '0.21.0'
|
release = '0.21.1'
|
||||||
|
|
||||||
# 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.
|
||||||
|
@@ -34,11 +34,11 @@ match before filling un bug report.
|
|||||||
|
|
||||||
As illustration see this table of compatible releases:
|
As illustration see this table of compatible releases:
|
||||||
|
|
||||||
+-----------+------+------------------------------+--------------+--------------+
|
+-----------+--------------+------------------------------+--------------+
|
||||||
|**libgit2**|0.21.0|0.20.0 |0.19.0 |0.18.0 |
|
|**libgit2**|0.21.0 |0.20.0 |0.19.0 |
|
||||||
+-----------+------+------------------------------+--------------+--------------+
|
+-----------+--------------+------------------------------+--------------+
|
||||||
|**pygit2** |0.21.0|0.20.0, 0.20.1, 0.20.2, 0.20.3|0.19.0, 0.19.1|0.18.0, 0.18.1|
|
|**pygit2** |0.21.0, 0.21.1|0.20.0, 0.20.1, 0.20.2, 0.20.3|0.19.0, 0.19.1|
|
||||||
+-----------+------+------------------------------+--------------+--------------+
|
+-----------+--------------+------------------------------+--------------+
|
||||||
|
|
||||||
**Warning!** Backwards compatibility is not guaranteed even between micro
|
**Warning!** Backwards compatibility is not guaranteed even between micro
|
||||||
releases. Please check the release notes for incompatible changes before
|
releases. Please check the release notes for incompatible changes before
|
||||||
|
@@ -23,4 +23,4 @@
|
|||||||
# the Free Software Foundation, 51 Franklin Street, Fifth Floor,
|
# the Free Software Foundation, 51 Franklin Street, Fifth Floor,
|
||||||
# Boston, MA 02110-1301, USA.
|
# Boston, MA 02110-1301, USA.
|
||||||
|
|
||||||
__version__ = '0.21.0'
|
__version__ = '0.21.1'
|
||||||
|
Reference in New Issue
Block a user