Skip to content

Commit

Permalink
Get ready for 0.21.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jdavid committed Nov 4, 2014
1 parent 316d5af commit 21e2102
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 35 deletions.
49 changes: 25 additions & 24 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ How to install
Changelog
==============

0.21.4 (2014-11-XX)
0.21.4 (2014-11-04)
-------------------

- Fix credentials callback not set when pushing
Expand Down Expand Up @@ -446,33 +446,34 @@ Other: `#331 <https://github.com/libgit2/pygit2/pull/331>`_
Authors
==============

73 developers have contributed at least 1 commit to pygit2::

J. David Ibáñez Rémi Duraffort Alexander Bayandin
Carlos Martín Nieto Sebastian Thiel Andrew Chin
Nico von Geyso Fraser Tweedale András Veres-Szentkirályi
W. Trevor King Han-Wen Nienhuys Benjamin Kircher
Dave Borowitz Leonardo Rhodes Benjamin Pollack
Daniel Rodríguez Troitiño Petr Viktorin Bryan O'Sullivan
Richo Healey Ron Cohen Daniel Bruce
Christian Boos Thomas Kluyver David Fischer
Julien Miotte Alex Chamberlain David Sanders
Xu Tao Amit Bakshi Devaev Maxim
Jose Plana Andrey Devyatkin Eric Davis
Matthew Gamble Arno van Lumig Erik Meusel
Martin Lenders Ben Davis Erik van Zijst
Petr Hosek Eric Schrijver Ferengee
Victor Garcia Hervé Cauwelier Gustavo Di Pietro
Xavier Delannoy Huang Huang Hugh Cole-Baker
Yonggang Luo Ian P. McCullough Jasper Lievisse Adriaanse
Valentin Haenel Jack O'Connor Josh Bleecher Snyder
77 developers have contributed at least 1 commit to pygit2::

J. David Ibáñez Sebastian Thiel András Veres-Szentkirályi
Carlos Martín Nieto Fraser Tweedale Ash Berlin
Nico von Geyso Han-Wen Nienhuys Benjamin Kircher
W. Trevor King Leonardo Rhodes Benjamin Pollack
Dave Borowitz Petr Viktorin Bryan O'Sullivan
Daniel Rodríguez Troitiño Ron Cohen Daniel Bruce
Richo Healey Thomas Kluyver David Fischer
Christian Boos Alex Chamberlain David Sanders
Julien Miotte Alexander Bayandin Devaev Maxim
Xu Tao Amit Bakshi Eric Davis
Jose Plana Andrey Devyatkin Erik Meusel
Matthew Gamble Arno van Lumig Erik van Zijst
Martin Lenders Ben Davis Ferengee
Petr Hosek Eric Schrijver Gustavo Di Pietro
Victor Garcia Hervé Cauwelier Hugh Cole-Baker
Xavier Delannoy Huang Huang Jasper Lievisse Adriaanse
Yonggang Luo Ian P. McCullough Josh Bleecher Snyder
Valentin Haenel Jack O'Connor Kyriakos Oikonomakos
Michael Jones Jared Flatow Mathieu Bridon
Bernardo Heynemann Jiunn Haur Lim Óscar San José
John Szakmeister Jun Omae Ridge Kennedy
Matthew Duggan Sarath Lakshman Rui Abreu Ferreira
Brodie Rao Vicent Marti earl
Vlad Temian Zoran Zaric
David Versmisse Adam Spiers
Brodie Rao Vicent Marti Soasme
Vlad Temian Zoran Zaric chengyuhang
David Versmisse Adam Spiers earl
Rémi Duraffort Andrew Chin


License
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
# The short X.Y version.
version = '0.21'
# The full version, including alpha/beta/rc tags.
release = '0.21.3'
release = '0.21.4'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
8 changes: 4 additions & 4 deletions docs/general.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,23 +18,23 @@ 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.21.1``::
``0.21.2``::

>>> print LIBGIT2_VER_MAJOR
0

.. py:data:: LIBGIT2_VER_MINOR
Integer value of the minor version number. For example, for the version
``0.21.1``::
``0.21.2``::

>>> print LIBGIT2_VER_MINOR
21

.. py:data:: LIBGIT2_VER_REVISION
Integer value of the revision version number. For example, for the version
``0.21.1``::
``0.21.2``::

>>> print LIBGIT2_VER_REVISION
1
Expand All @@ -44,7 +44,7 @@ library that has been built against. The version number has a
The libgit2 version number as a string::

>>> print LIBGIT2_VERSION
'0.21.1'
'0.21.2'

Errors
======
Expand Down
10 changes: 5 additions & 5 deletions docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ while the last number |lq| *.micro* |rq| auto-increments independently.

As illustration see this table of compatible releases:

+-----------+-------------------------------+------------------------------+--------------+
|**libgit2**|0.21.1, 0.21.2 |0.20.0 |0.19.0 |
+-----------+-------------------------------+------------------------------+--------------+
|**pygit2** |0.21.0, 0.21.1, 0.21.2, 0.21.3 |0.20.0, 0.20.1, 0.20.2, 0.20.3|0.19.0, 0.19.1|
+-----------+-------------------------------+------------------------------+--------------+
+-----------+---------------------------------------+------------------------------+--------------+
|**libgit2**|0.21.1, 0.21.2 |0.20.0 |0.19.0 |
+-----------+---------------------------------------+------------------------------+--------------+
|**pygit2** |0.21.0, 0.21.1, 0.21.2, 0.21.3, 0.21.4 |0.20.0, 0.20.1, 0.20.2, 0.20.3|0.19.0, 0.19.1|
+-----------+---------------------------------------+------------------------------+--------------+

.. warning::

Expand Down
2 changes: 1 addition & 1 deletion pygit2/_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
#
# The version number of pygit2
#
__version__ = '0.21.3'
__version__ = '0.21.4'


#
Expand Down

0 comments on commit 21e2102

Please sign in to comment.