Skip to content

Commit cd30df4

Browse files
committed
release 0.22.3
1 parent 48078d0 commit cd30df4

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

.github/workflows/python-distributions.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ name: Build Python distributions
33
on:
44
push:
55
branches: [ main, master ]
6+
tags:
7+
- 'dulwich-*'
68
pull_request:
79
schedule:
810
- cron: "0 6 * * *" # Daily 6AM UTC build
@@ -32,7 +34,7 @@ jobs:
3234
- name: Select build identifiers
3335
id: select-build-identifiers
3436
run: |
35-
if [ "$GITHUB_REF" = "refs/heads/main" ] || [ "$GITHUB_REF" = "refs/heads/master" ] || [ "$GITHUB_REF" = "refs/tags/"* ]; then
37+
if [[ "$GITHUB_REF" = "refs/heads/main" ]] || [[ "$GITHUB_REF" = "refs/heads/master" ]] || [[ "$GITHUB_REF" = "refs/tags/"* ]]; then
3638
echo 'linux=${{ steps.all-build-identifiers.outputs.linux }}' >> $GITHUB_OUTPUT
3739
echo 'windows=${{ steps.all-build-identifiers.outputs.windows }}' >> $GITHUB_OUTPUT
3840
echo 'macos=${{ steps.all-build-identifiers.outputs.macos }}' >> $GITHUB_OUTPUT

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ resolver = "2"
66
pyo3 = ">=0.19"
77

88
[workspace.package]
9-
version = "0.22.2"
9+
version = "0.22.3"

NEWS

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
0.22.3 2024-10-15
2+
3+
* Improve wheel building in CI, so we can upload wheels for the next release.
4+
(Jelmer Vernooij)
5+
16
0.22.2 2024-10-09
27

38
* Ship ``Cargo.lock``. (Jelmer Vernooij, #1287)

dulwich/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222

2323
"""Python implementation of the Git file formats and protocols."""
2424

25-
__version__ = (0, 22, 2)
25+
__version__ = (0, 22, 3)

0 commit comments

Comments
 (0)