Skip to content

Commit a1e7ca4

Browse files
committed
Update changelog
1 parent 0fcb6da commit a1e7ca4

File tree

3 files changed

+20
-3
lines changed

3 files changed

+20
-3
lines changed

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
# 1.17.0 (UNRELEASED)
2+
3+
- Upgrade to libgit2 1.9
4+
5+
- Add `certificate_check` callback to `Remote.ls_remotes(...)`
6+
[#1326](https://github.com/libgit2/pygit2/pull/1326)
7+
8+
- Fix build with GCC 14
9+
[#1324](https://github.com/libgit2/pygit2/pull/1324)
10+
11+
- CI: update tests for macOS to use OpenSSL 3
12+
[#1335](https://github.com/libgit2/pygit2/pull/1335)
13+
14+
- Documentation: fix typo in `Repository.status(...)` docstring
15+
[#1327](https://github.com/libgit2/pygit2/pull/1327)
16+
17+
118
# 1.16.0 (2024-10-11)
219

320
- Add support for Python 3.13

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.PHONY: build html
22

33
build:
4-
OPENSSL_VERSION=3.2.3 LIBSSH2_VERSION=1.11.1 LIBGIT2_VERSION=1.9.0 sh build.sh
4+
OPENSSL_VERSION=3.3.2 LIBSSH2_VERSION=1.11.1 LIBGIT2_VERSION=1.9.0 sh build.sh
55

66
html: build
77
make -C docs html

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ skip = "pp3* *musllinux_aarch64 *musllinux_ppc64le"
77
archs = ["auto"]
88
build-frontend = "default"
99
dependency-versions = "pinned"
10-
environment = {LIBGIT2_VERSION="1.9.0", LIBSSH2_VERSION="1.11.1", OPENSSL_VERSION="3.2.3", LIBGIT2="/project/ci"}
10+
environment = {LIBGIT2_VERSION="1.9.0", LIBSSH2_VERSION="1.11.1", OPENSSL_VERSION="3.3.2", LIBGIT2="/project/ci"}
1111

1212
before-all = "sh build.sh"
1313

@@ -21,7 +21,7 @@ repair-wheel-command = "LD_LIBRARY_PATH=/project/ci/lib auditwheel repair -w {de
2121

2222
[tool.cibuildwheel.macos]
2323
archs = ["universal2"]
24-
environment = {LIBGIT2_VERSION="1.9.0", LIBSSH2_VERSION="1.11.1", OPENSSL_VERSION="3.2.3", LIBGIT2="/Users/runner/work/pygit2/pygit2/ci"}
24+
environment = {LIBGIT2_VERSION="1.9.0", LIBSSH2_VERSION="1.11.1", OPENSSL_VERSION="3.3.2", LIBGIT2="/Users/runner/work/pygit2/pygit2/ci"}
2525
repair-wheel-command = "DYLD_LIBRARY_PATH=/Users/runner/work/pygit2/pygit2/ci/lib delocate-wheel --require-archs {delocate_archs} -w {dest_dir} {wheel}"
2626

2727
[tool.ruff]

0 commit comments

Comments
 (0)