Skip to content

Commit f93efd8

Browse files
committed
Release 1.7.0
1 parent de4eac1 commit f93efd8

File tree

8 files changed

+17
-16
lines changed

8 files changed

+17
-16
lines changed

.mailmap

+1
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,4 @@ Xavier Delannoy <[email protected]>
3131
3232
3333
Mikhail Yushkovskiy <[email protected]>
34+
Saugat Pachhai <[email protected]>

AUTHORS.rst

+4-1
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,12 @@ Authors::
6262
Leonardo Rhodes
6363
Mark Adams
6464
Nika Layzell
65+
Peter Rowlands
6566
Peter-Yi Zhang
6667
Petr Viktorin
6768
Robert Hölzl
6869
Ron Cohen
70+
Sebastian Böhm
6971
Thomas Kluyver
7072
Alex Chamberlain
7173
Alexander Bayandin
@@ -98,8 +100,8 @@ Authors::
98100
Michael Sondergaard
99101
Natanael Arndt
100102
Ondřej Nový
101-
Peter Rowlands
102103
Sarath Lakshman
104+
Saugat Pachhai
103105
Szucs Krisztian
104106
Vicent Marti
105107
Zoran Zaric
@@ -143,6 +145,7 @@ Authors::
143145
Gustavo Di Pietro
144146
Holger Frey
145147
Hugh Cole-Baker
148+
Iliyas Jorio
146149
Isabella Stephens
147150
Jasper Lievisse Adriaanse
148151
Jiri Benc

CHANGELOG.rst

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
1.7.0 (UNRELEASED)
1+
1.7.0 (2021-10-08)
22
-------------------------
33

44
- Upgrade to libgit2 1.3.0
55
`#1089 <https://github.com/libgit2/pygit2/pull/1089>`_
66

77
- Linux wheels now bundled with libssh2 1.10.0 (instead of 1.9.0)
88

9+
- macOS wheels now include libssh2
10+
911
- Add support for Python 3.10
1012
`#1092 <https://github.com/libgit2/pygit2/pull/1092>`_
1113
`#1093 <https://github.com/libgit2/pygit2/pull/1093>`_
@@ -24,6 +26,10 @@
2426

2527
- CI: Stop using Travis, move to GitHub actions
2628

29+
Caveats:
30+
31+
- Windows wheels for Python 3.10 not yet available.
32+
2733

2834
1.6.1 (2021-06-19)
2935
-------------------------

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 1.6.{build}
1+
version: 1.7.{build}
22
image: Visual Studio 2019
33
configuration: Release
44
environment:

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#author = ''
2323

2424
# The full version, including alpha/beta/rc tags
25-
release = '1.6.1'
25+
release = '1.7.0'
2626

2727

2828
# -- General configuration ---------------------------------------------------

docs/install.rst

+2-3
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ The line above will install binary wheels if available in your platform.
2525

2626
.. warning::
2727

28-
pip 18.1 is known not to pick the binary wheel. Please verify that you have
29-
pip 19.0 or later.
28+
Use pip 19.3 or later, otherwise the source package will be installed
29+
instead of the binary wheel.
3030

3131
To install the source package:
3232

@@ -59,7 +59,6 @@ Optional libgit2 dependecies to support ssh and https:
5959
To run the tests:
6060

6161
- pytest
62-
- tox (optional)
6362

6463
Version numbers
6564
===============

pygit2/_build.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
#
3636
# The version number of pygit2
3737
#
38-
__version__ = '1.6.1'
38+
__version__ = '1.7.0'
3939

4040

4141
#

setup.cfg

-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
11
[pycodestyle]
22
exclude = .eggs,.git,.tox,build,dist,docs,venv*
33
select = E4,E9,W1,W2,W3,W6
4-
5-
[tox:tox]
6-
envlist = py37,py38,py39,py310,pypy3
7-
8-
[tox:testenv]
9-
deps = pytest
10-
commands = pytest {posargs}
11-
passenv = LIBGIT2

0 commit comments

Comments
 (0)