Get ready to release v0.22.0

This commit is contained in:
J. David Ibáñez 2015-01-16 16:35:19 +01:00
parent 9da91e554d
commit 126308403b
5 changed files with 20 additions and 20 deletions

@ -25,7 +25,7 @@ How to install
Changelog
==============
0.22.0 (2015-0X-XX)
0.22.0 (2015-01-16)
-------------------
New:
@ -46,12 +46,12 @@ API Changes:
- Removed ``clone_into``, use ``clone_repository`` with callbacks instead
- Use ``Repository.remotes.rename(name, new_name)`` instead fo
- Use ``Repository.remotes.rename(name, new_name)`` instead of
``Remote.rename(new_name)``
- Use ``Repository.remotes.delete(name)`` instead fo ``Remote.delete()``
- Use ``Repository.remotes.delete(name)`` instead of ``Remote.delete()``
- Now ``Remote.push(...)`` takes a list of refspecs instead of just one.
- Now ``Remote.push(...)`` takes a list of refspecs instead of just one
- Change ``Patch.old_id``, ``Patch.new_id``, ``Note.annotated_id``,
``RefLogEntry.oid_old`` and ``RefLogEntry.oid_new`` to be ``Oid`` objects
@ -502,7 +502,7 @@ Other: `#331 <https://github.com/libgit2/pygit2/pull/331>`_
Authors
==============
77 developers have contributed at least 1 commit to pygit2::
83 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

@ -50,9 +50,9 @@ copyright = u'2010-2014 The pygit2 contributors'
# built documents.
#
# The short X.Y version.
version = '0.21'
version = '0.22'
# The full version, including alpha/beta/rc tags.
release = '0.21.4'
release = '0.22.0'
# 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.21.2``::
``0.22.0``::
>>> print LIBGIT2_VER_MAJOR
0
@ -26,25 +26,25 @@ 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.21.2``::
``0.22.0``::
>>> print LIBGIT2_VER_MINOR
21
22
.. py:data:: LIBGIT2_VER_REVISION
Integer value of the revision version number. For example, for the version
``0.21.2``::
``0.22.0``::
>>> print LIBGIT2_VER_REVISION
1
0
.. py:data:: LIBGIT2_VERSION
The libgit2 version number as a string::
>>> print LIBGIT2_VERSION
'0.21.2'
'0.22.0'
Errors
======

@ -139,9 +139,9 @@ Install libgit2 (see we define the installation prefix):
.. code-block:: sh
$ wget https://github.com/libgit2/libgit2/archive/v0.21.2.tar.gz
$ tar xzf v0.21.2.tar.gz
$ cd libgit2-0.21.2/
$ wget https://github.com/libgit2/libgit2/archive/v0.22.0.tar.gz
$ tar xzf v0.22.0.tar.gz
$ cd libgit2-0.22.0/
$ cmake . -DCMAKE_INSTALL_PREFIX=$LIBGIT2
$ make
$ make install
@ -194,9 +194,9 @@ from a bash shell:
.. code-block:: sh
$ export LIBGIT2=C:/Dev/libgit2
$ wget https://github.com/libgit2/libgit2/archive/v0.21.2.tar.gz
$ tar xzf v0.21.2.tar.gz
$ cd libgit2-0.21.2/
$ wget https://github.com/libgit2/libgit2/archive/v0.22.0.tar.gz
$ tar xzf v0.22.0.tar.gz
$ cd libgit2-0.22.0/
$ cmake . -DSTDCALL=OFF -DCMAKE_INSTALL_PREFIX=$LIBGIT2 -G "Visual Studio 9 2008"
$ cmake --build . --config release --target install
$ ctest -v

@ -43,7 +43,7 @@ import sys
#
# The version number of pygit2
#
__version__ = '0.21.4'
__version__ = '0.22.0'
#