Get ready to release v0.22.0
This commit is contained in:
10
README.rst
10
README.rst
@@ -25,7 +25,7 @@ How to install
|
|||||||
Changelog
|
Changelog
|
||||||
==============
|
==============
|
||||||
|
|
||||||
0.22.0 (2015-0X-XX)
|
0.22.0 (2015-01-16)
|
||||||
-------------------
|
-------------------
|
||||||
|
|
||||||
New:
|
New:
|
||||||
@@ -46,12 +46,12 @@ API Changes:
|
|||||||
|
|
||||||
- Removed ``clone_into``, use ``clone_repository`` with callbacks instead
|
- 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)``
|
``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``,
|
- Change ``Patch.old_id``, ``Patch.new_id``, ``Note.annotated_id``,
|
||||||
``RefLogEntry.oid_old`` and ``RefLogEntry.oid_new`` to be ``Oid`` objects
|
``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
|
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
|
J. David Ibáñez Sebastian Thiel András Veres-Szentkirályi
|
||||||
Carlos Martín Nieto Fraser Tweedale Ash Berlin
|
Carlos Martín Nieto Fraser Tweedale Ash Berlin
|
||||||
|
@@ -50,9 +50,9 @@ copyright = u'2010-2014 The pygit2 contributors'
|
|||||||
# built documents.
|
# built documents.
|
||||||
#
|
#
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = '0.21'
|
version = '0.22'
|
||||||
# The full version, including alpha/beta/rc tags.
|
# 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
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# 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
|
.. 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.21.2``::
|
``0.22.0``::
|
||||||
|
|
||||||
>>> print LIBGIT2_VER_MAJOR
|
>>> print LIBGIT2_VER_MAJOR
|
||||||
0
|
0
|
||||||
@@ -26,25 +26,25 @@ 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.21.2``::
|
``0.22.0``::
|
||||||
|
|
||||||
>>> print LIBGIT2_VER_MINOR
|
>>> print LIBGIT2_VER_MINOR
|
||||||
21
|
22
|
||||||
|
|
||||||
.. 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.21.2``::
|
``0.22.0``::
|
||||||
|
|
||||||
>>> print LIBGIT2_VER_REVISION
|
>>> print LIBGIT2_VER_REVISION
|
||||||
1
|
0
|
||||||
|
|
||||||
.. 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.21.2'
|
'0.22.0'
|
||||||
|
|
||||||
Errors
|
Errors
|
||||||
======
|
======
|
||||||
|
@@ -139,9 +139,9 @@ Install libgit2 (see we define the installation prefix):
|
|||||||
|
|
||||||
.. code-block:: sh
|
.. code-block:: sh
|
||||||
|
|
||||||
$ wget https://github.com/libgit2/libgit2/archive/v0.21.2.tar.gz
|
$ wget https://github.com/libgit2/libgit2/archive/v0.22.0.tar.gz
|
||||||
$ tar xzf v0.21.2.tar.gz
|
$ tar xzf v0.22.0.tar.gz
|
||||||
$ cd libgit2-0.21.2/
|
$ cd libgit2-0.22.0/
|
||||||
$ cmake . -DCMAKE_INSTALL_PREFIX=$LIBGIT2
|
$ cmake . -DCMAKE_INSTALL_PREFIX=$LIBGIT2
|
||||||
$ make
|
$ make
|
||||||
$ make install
|
$ make install
|
||||||
@@ -194,9 +194,9 @@ from a bash shell:
|
|||||||
.. code-block:: sh
|
.. code-block:: sh
|
||||||
|
|
||||||
$ export LIBGIT2=C:/Dev/libgit2
|
$ export LIBGIT2=C:/Dev/libgit2
|
||||||
$ wget https://github.com/libgit2/libgit2/archive/v0.21.2.tar.gz
|
$ wget https://github.com/libgit2/libgit2/archive/v0.22.0.tar.gz
|
||||||
$ tar xzf v0.21.2.tar.gz
|
$ tar xzf v0.22.0.tar.gz
|
||||||
$ cd libgit2-0.21.2/
|
$ cd libgit2-0.22.0/
|
||||||
$ cmake . -DSTDCALL=OFF -DCMAKE_INSTALL_PREFIX=$LIBGIT2 -G "Visual Studio 9 2008"
|
$ cmake . -DSTDCALL=OFF -DCMAKE_INSTALL_PREFIX=$LIBGIT2 -G "Visual Studio 9 2008"
|
||||||
$ cmake --build . --config release --target install
|
$ cmake --build . --config release --target install
|
||||||
$ ctest -v
|
$ ctest -v
|
||||||
|
@@ -43,7 +43,7 @@ import sys
|
|||||||
#
|
#
|
||||||
# The version number of pygit2
|
# The version number of pygit2
|
||||||
#
|
#
|
||||||
__version__ = '0.21.4'
|
__version__ = '0.22.0'
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
|
Reference in New Issue
Block a user