Skip to content

Commit

Permalink
Release 1.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jdavid committed Jan 26, 2024
1 parent 6c098b4 commit 988eb95
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 20 deletions.
1 change: 1 addition & 0 deletions .mailmap
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Bob Carroll <bob.carroll@alum.rit.edu> <bobc@qti.qualcomm.com>
Brandon Milton <bmilton@fb.com> <brandon.milton21@gmail.com>
Carlos Martín Nieto <cmn@dwim.me> <carlos@cmartin.tk>
Christian Boos <cboos@edgewall.org> <cboos@bct-technology.com>
Grégory Herrero <gregory.herrero@oracle.com>
Guillermo Pérez <bisho@fb.com> <bisho@freedreams.org>
Gustavo Di Pietro <pistacchio@gmail.com>
J. David Ibáñez <jdavid.ibp@gmail.com> <jdavid@itaapy.com>
Expand Down
8 changes: 5 additions & 3 deletions AUTHORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Authors:
J. David Ibáñez
Carlos Martín Nieto
Nico von Geyso
Sviatoslav Sydorenko
Iliyas Jorio
Sviatoslav Sydorenko
Matthias Bartelmeß
Robert Coup
W. Trevor King
Expand Down Expand Up @@ -49,13 +49,15 @@ Authors:
Andrew Olsen
Dan Sully
David Versmisse
Grégory Herrero
Mikhail Yushkovskiy
Robin Stocker
Rohit Sanjay
Rémi Duraffort
Santiago Perez De Rosso
Sebastian Thiel
Thom Wiggers
William Manley
Alexander Linne
Alok Singhal
Assaf Nativ
Expand All @@ -66,6 +68,7 @@ Authors:
Fraser Tweedale
Grégoire ROCHER
Han-Wen Nienhuys
Helio Machado
Jason Ziglar
Leonardo Rhodes
Mark Adams
Expand All @@ -78,7 +81,6 @@ Authors:
Sukhman Bhuller
Thomas Kluyver
Tyler Cipriani
William Manley
Alex Chamberlain
Alexander Bayandin
Amit Bakshi
Expand All @@ -90,7 +92,6 @@ Authors:
Dustin Raimondi
Eric Schrijver
Greg Fitzgerald
Gregory Herrero
Guillermo Pérez
Hervé Cauwelier
Hong Minhee
Expand Down Expand Up @@ -167,6 +168,7 @@ Authors:
Isabella Stephens
Jacob Swanson
Jasper Lievisse Adriaanse
Jimisola Laursen
Jiri Benc
Jonathan Robson
Josh Bleecher Snyder
Expand Down
24 changes: 10 additions & 14 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 1.14.0 (UNRELEASED)
# 1.14.0 (2024-01-26)

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

Deprecations:

- Deprecate `Repository.add_submodule(...)`, use
`Repository.submodules.add(...)`
- Deprecate `Repository.lookup_submodule(...)`, use
`Repository.submodules[...]`
- Deprecate `Repository.init_submodules(...)`, use
`Repository.submodules.init(...)`
- Deprecate `Repository.update_submodule(...)`, use
`Repository.submodules.update(...)`
- Deprecate `Repository.add_submodule(...)`, use `Repository.submodules.add(...)`
- Deprecate `Repository.lookup_submodule(...)`, use `Repository.submodules[...]`
- Deprecate `Repository.init_submodules(...)`, use `Repository.submodules.init(...)`
- Deprecate `Repository.update_submodule(...)`, use `Repository.submodules.update(...)`
- Deprecate `GIT_*` constants, use `pygit2.enums`
- Passign dicts to repository\'s `merge(...)`, `merge_commits(...)`
and `merge_trees(...)` is deprecated. Instead pass `MergeFavor` for
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 1.13.{build}
version: 1.14.{build}
image: Visual Studio 2019
configuration: Release
environment:
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#author = ''

# The full version, including alpha/beta/rc tags
release = '1.13.3'
release = '1.14.0'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pygit2/_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
#
# The version number of pygit2
#
__version__ = '1.13.3'
__version__ = '1.14.0'


#
Expand Down

0 comments on commit 988eb95

Please sign in to comment.