Skip to content

Commit 8559b2d

Browse files
committed
Release 0.25.1
1 parent 9325494 commit 8559b2d

File tree

9 files changed

+892
-851
lines changed

9 files changed

+892
-851
lines changed

CHANGELOG.rst

+836
Large diffs are not rendered by default.

README.rst

+18-825
Large diffs are not rendered by default.

docs/backends.rst

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
**********************************************************************
2+
Custom backends
3+
**********************************************************************
4+
5+
There is some support for custom backends, but undocumented. See
6+
`<https://github.com/libgit2/pygit2/pull/690/commits>`_
7+
8+
Documentation contributions are very welcome.

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
# The short X.Y version.
5353
version = '0.25'
5454
# The full version, including alpha/beta/rc tags.
55-
release = '0.25.0'
55+
release = '0.25.1'
5656

5757
# The language for content autogenerated by Sphinx. Refer to documentation
5858
# for a list of supported languages.

docs/general.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -18,33 +18,33 @@ library that has been built against. The version number has a
1818
.. py:data:: LIBGIT2_VER_MAJOR
1919
2020
Integer value of the major version number. For example, for the version
21-
``0.25.0``::
21+
``0.25.1``::
2222

2323
>>> print LIBGIT2_VER_MAJOR
2424
0
2525

2626
.. py:data:: LIBGIT2_VER_MINOR
2727
2828
Integer value of the minor version number. For example, for the version
29-
``0.25.0``::
29+
``0.25.1``::
3030

3131
>>> print LIBGIT2_VER_MINOR
3232
25
3333

3434
.. py:data:: LIBGIT2_VER_REVISION
3535
3636
Integer value of the revision version number. For example, for the version
37-
``0.25.0``::
37+
``0.25.1``::
3838

3939
>>> print LIBGIT2_VER_REVISION
40-
0
40+
1
4141

4242
.. py:data:: LIBGIT2_VERSION
4343
4444
The libgit2 version number as a string::
4545

4646
>>> print LIBGIT2_VERSION
47-
'0.25.0'
47+
'0.25.1'
4848

4949
Errors
5050
======

docs/index.rst

+5-3
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,12 @@ implements the core of Git. Pygit2 works with Python 2.7, 3.2, 3.3, 3.4, 3.5,
1313
It is likely to work with Python 2.6 and 3.1, but these versions are not
1414
officially supported.
1515

16-
Pygit2 links:
16+
Links:
1717

18-
- http://github.com/libgit2/pygit2 -- Source code and issue tracker
18+
- https://github.com/libgit2/pygit2 -- Source code and issue tracker
1919
- http://www.pygit2.org/ -- Documentation
20-
- http://pypi.python.org/pypi/pygit2 -- Download
20+
- https://pypi.python.org/pypi/pygit2 -- Download
21+
- https://github.com/libgit2/pygit2/blob/master/CHANGELOG.rst -- Changelog
2122

2223
Start:
2324

@@ -49,6 +50,7 @@ Usage guide:
4950
blame
5051
settings
5152
features
53+
backends
5254

5355

5456
Indices and tables

docs/install.rst

+15-15
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ while the last number |lq| *.micro* |rq| auto-increments independently.
4343

4444
As illustration see this table of compatible releases:
4545

46-
+-----------+--------+--------------+--------+
47-
|**libgit2**| 0.25.0 | 0.24.0, 0.24.1 0.24.2 |
48-
+-----------+--------+--------------+--------+
49-
|**pygit2** | 0.25.0 | 0.24.0, 0.24.1 0.24.2 |
50-
+-----------+--------+--------------+--------+
46+
+-----------+----------------+------------------------+
47+
|**libgit2**| 0.25.0, 0.25.1 | 0.24.0, 0.24.1, 0.24.2 |
48+
+-----------+----------------+------------------------+
49+
|**pygit2** | 0.25.0, 0.25.1 | 0.24.0, 0.24.1, 0.24.2 |
50+
+-----------+----------------+------------------------+
5151

5252
.. warning::
5353

@@ -64,9 +64,9 @@ directory, do:
6464

6565
.. code-block:: sh
6666
67-
$ wget https://github.com/libgit2/libgit2/archive/v0.25.0.tar.gz
68-
$ tar xzf v0.25.0.tar.gz
69-
$ cd libgit2-0.25.0/
67+
$ wget https://github.com/libgit2/libgit2/archive/v0.25.1.tar.gz
68+
$ tar xzf v0.25.1.tar.gz
69+
$ cd libgit2-0.25.1/
7070
$ cmake .
7171
$ make
7272
$ sudo make install
@@ -148,9 +148,9 @@ Install libgit2 (see we define the installation prefix):
148148

149149
.. code-block:: sh
150150
151-
$ wget https://github.com/libgit2/libgit2/archive/v0.25.0.tar.gz
152-
$ tar xzf v0.25.0.tar.gz
153-
$ cd libgit2-0.25.0/
151+
$ wget https://github.com/libgit2/libgit2/archive/v0.25.1.tar.gz
152+
$ tar xzf v0.25.1.tar.gz
153+
$ cd libgit2-0.25.1/
154154
$ cmake . -DCMAKE_INSTALL_PREFIX=$LIBGIT2
155155
$ make
156156
$ make install
@@ -186,7 +186,7 @@ everytime. Verify yourself if curious:
186186

187187
.. code-block:: sh
188188
189-
$ readelf --dynamic lib/python2.7/site-packages/pygit2-0.25.0-py2.7-linux-x86_64.egg/_pygit2.so | grep PATH
189+
$ readelf --dynamic lib/python2.7/site-packages/pygit2-0.25.1-py2.7-linux-x86_64.egg/_pygit2.so | grep PATH
190190
0x000000000000001d (RUNPATH) Library runpath: [/tmp/venv/lib]
191191
192192
@@ -203,9 +203,9 @@ from a bash shell:
203203
.. code-block:: sh
204204
205205
$ export LIBGIT2=C:/Dev/libgit2
206-
$ wget https://github.com/libgit2/libgit2/archive/v0.25.0.tar.gz
207-
$ tar xzf v0.25.0.tar.gz
208-
$ cd libgit2-0.25.0/
206+
$ wget https://github.com/libgit2/libgit2/archive/v0.25.1.tar.gz
207+
$ tar xzf v0.25.1.tar.gz
208+
$ cd libgit2-0.25.1/
209209
$ cmake . -DSTDCALL=OFF -DCMAKE_INSTALL_PREFIX=$LIBGIT2 -G "Visual Studio 9 2008"
210210
$ cmake --build . --config release --target install
211211
$ ctest -v

docs/submodule.rst

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
**********************************************************************
2-
The submodule
2+
Submodules
33
**********************************************************************
44

55
A submodule is a foreign repository that is embedded within a
66
dedicated subdirectory of the repositories tree.
77

8+
.. automethod:: pygit2.Repository.init_submodules
9+
.. automethod:: pygit2.Repository.update_submodules
810
.. automethod:: pygit2.Repository.lookup_submodule
911
.. automethod:: pygit2.Repository.listall_submodules
1012

pygit2/_build.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
#
3838
# The version number of pygit2
3939
#
40-
__version__ = '0.25.0'
40+
__version__ = '0.25.1'
4141

4242

4343
#

0 commit comments

Comments
 (0)