From f1ae053a060283f708b20785526162a4f0bdf8cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jelmer=20Vernoo=C4=B3?= Date: Tue, 15 Oct 2024 20:12:11 +0100 Subject: [PATCH] release 0.22.3 --- .github/workflows/python-distributions.yml | 2 ++ Cargo.toml | 2 +- NEWS | 5 +++++ dulwich/__init__.py | 2 +- 4 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-distributions.yml b/.github/workflows/python-distributions.yml index 634e9ff2c..36990eb8d 100644 --- a/.github/workflows/python-distributions.yml +++ b/.github/workflows/python-distributions.yml @@ -3,6 +3,8 @@ name: Build Python distributions on: push: branches: [ main, master ] + tags: + - 'dulwich-*' pull_request: schedule: - cron: "0 6 * * *" # Daily 6AM UTC build diff --git a/Cargo.toml b/Cargo.toml index af64da42a..1b1a5f747 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,4 +6,4 @@ resolver = "2" pyo3 = ">=0.19" [workspace.package] -version = "0.22.2" +version = "0.22.3" diff --git a/NEWS b/NEWS index 34f7941fb..9911115f6 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,8 @@ +0.22.3 2024-10-15 + + * Improve wheel building in CI, so we can upload wheels for the next release. + (Jelmer Vernooij) + 0.22.2 2024-10-09 * Ship ``Cargo.lock``. (Jelmer Vernooij, #1287) diff --git a/dulwich/__init__.py b/dulwich/__init__.py index 496dcc6d3..609a98e36 100644 --- a/dulwich/__init__.py +++ b/dulwich/__init__.py @@ -22,4 +22,4 @@ """Python implementation of the Git file formats and protocols.""" -__version__ = (0, 22, 2) +__version__ = (0, 22, 3)