Skip to content

Commit 988eb95

Browse files
committed
Release 1.14.0
1 parent 6c098b4 commit 988eb95

File tree

6 files changed

+19
-20
lines changed

6 files changed

+19
-20
lines changed

Diff for: .mailmap

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Bob Carroll <[email protected]> <[email protected]>
55
66
Carlos Martín Nieto <[email protected]> <[email protected]>
77
8+
Grégory Herrero <[email protected]>
89
910
Gustavo Di Pietro <[email protected]>
1011

Diff for: AUTHORS.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ Authors:
33
J. David Ibáñez
44
Carlos Martín Nieto
55
Nico von Geyso
6-
Sviatoslav Sydorenko
76
Iliyas Jorio
7+
Sviatoslav Sydorenko
88
Matthias Bartelmeß
99
Robert Coup
1010
W. Trevor King
@@ -49,13 +49,15 @@ Authors:
4949
Andrew Olsen
5050
Dan Sully
5151
David Versmisse
52+
Grégory Herrero
5253
Mikhail Yushkovskiy
5354
Robin Stocker
5455
Rohit Sanjay
5556
Rémi Duraffort
5657
Santiago Perez De Rosso
5758
Sebastian Thiel
5859
Thom Wiggers
60+
William Manley
5961
Alexander Linne
6062
Alok Singhal
6163
Assaf Nativ
@@ -66,6 +68,7 @@ Authors:
6668
Fraser Tweedale
6769
Grégoire ROCHER
6870
Han-Wen Nienhuys
71+
Helio Machado
6972
Jason Ziglar
7073
Leonardo Rhodes
7174
Mark Adams
@@ -78,7 +81,6 @@ Authors:
7881
Sukhman Bhuller
7982
Thomas Kluyver
8083
Tyler Cipriani
81-
William Manley
8284
Alex Chamberlain
8385
Alexander Bayandin
8486
Amit Bakshi
@@ -90,7 +92,6 @@ Authors:
9092
Dustin Raimondi
9193
Eric Schrijver
9294
Greg Fitzgerald
93-
Gregory Herrero
9495
Guillermo Pérez
9596
Hervé Cauwelier
9697
Hong Minhee
@@ -167,6 +168,7 @@ Authors:
167168
Isabella Stephens
168169
Jacob Swanson
169170
Jasper Lievisse Adriaanse
171+
Jimisola Laursen
170172
Jiri Benc
171173
Jonathan Robson
172174
Josh Bleecher Snyder

Diff for: CHANGELOG.md

+10-14
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 1.14.0 (UNRELEASED)
1+
# 1.14.0 (2024-01-26)
22

33
- Drop support for Python 3.8
44
- Add Linux wheels for musl on x86_64
@@ -10,14 +10,14 @@
1010
[#1261](https://github.com/libgit2/pygit2/pull/1261)
1111
- New `pygit2.enums` supersedes the `GIT_` constants
1212
[#1251](https://github.com/libgit2/pygit2/pull/1251)
13-
- Now `Repository.status(...)`, `Repository.status_file(...)`,
14-
`Repository.merge_analysis(...)`, `DiffFile.flags`, `DiffFile.mode`,
13+
- Now `Repository.status()`, `Repository.status_file()`,
14+
`Repository.merge_analysis()`, `DiffFile.flags`, `DiffFile.mode`,
1515
`DiffDelta.flags` and `DiffDelta.status` return enums
1616
[#1263](https://github.com/libgit2/pygit2/pull/1263)
17-
- Now repository\'s `merge(...)`, `merge_commits(...)` and
18-
`merge_trees(...)` take enums/flags for their `favor`, `flags` and
19-
`file_flags` arguments.
17+
- Now repository\'s `merge()`, `merge_commits()` and `merge_trees()`
18+
take enums/flags for their `favor`, `flags` and `file_flags` arguments.
2019
[#1271](https://github.com/libgit2/pygit2/pull/1271)
20+
[#1272](https://github.com/libgit2/pygit2/pull/1272)
2121
- Fix crash in filter cleanup
2222
[#1259](https://github.com/libgit2/pygit2/pull/1259)
2323
- Documentation fixes
@@ -33,14 +33,10 @@ Breaking changes:
3333

3434
Deprecations:
3535

36-
- Deprecate `Repository.add_submodule(...)`, use
37-
`Repository.submodules.add(...)`
38-
- Deprecate `Repository.lookup_submodule(...)`, use
39-
`Repository.submodules[...]`
40-
- Deprecate `Repository.init_submodules(...)`, use
41-
`Repository.submodules.init(...)`
42-
- Deprecate `Repository.update_submodule(...)`, use
43-
`Repository.submodules.update(...)`
36+
- Deprecate `Repository.add_submodule(...)`, use `Repository.submodules.add(...)`
37+
- Deprecate `Repository.lookup_submodule(...)`, use `Repository.submodules[...]`
38+
- Deprecate `Repository.init_submodules(...)`, use `Repository.submodules.init(...)`
39+
- Deprecate `Repository.update_submodule(...)`, use `Repository.submodules.update(...)`
4440
- Deprecate `GIT_*` constants, use `pygit2.enums`
4541
- Passign dicts to repository\'s `merge(...)`, `merge_commits(...)`
4642
and `merge_trees(...)` is deprecated. Instead pass `MergeFavor` for

Diff for: appveyor.yml

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

Diff for: 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.13.3'
25+
release = '1.14.0'
2626

2727

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

Diff for: pygit2/_build.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
#
3535
# The version number of pygit2
3636
#
37-
__version__ = '1.13.3'
37+
__version__ = '1.14.0'
3838

3939

4040
#

0 commit comments

Comments
 (0)