Skip to content

Commit

Permalink
release 0.22.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jelmer committed Oct 16, 2024
1 parent 48078d0 commit cd30df4
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/python-distributions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -32,7 +34,7 @@ jobs:
- name: Select build identifiers
id: select-build-identifiers
run: |
if [ "$GITHUB_REF" = "refs/heads/main" ] || [ "$GITHUB_REF" = "refs/heads/master" ] || [ "$GITHUB_REF" = "refs/tags/"* ]; then
if [[ "$GITHUB_REF" = "refs/heads/main" ]] || [[ "$GITHUB_REF" = "refs/heads/master" ]] || [[ "$GITHUB_REF" = "refs/tags/"* ]]; then
echo 'linux=${{ steps.all-build-identifiers.outputs.linux }}' >> $GITHUB_OUTPUT
echo 'windows=${{ steps.all-build-identifiers.outputs.windows }}' >> $GITHUB_OUTPUT
echo 'macos=${{ steps.all-build-identifiers.outputs.macos }}' >> $GITHUB_OUTPUT
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ resolver = "2"
pyo3 = ">=0.19"

[workspace.package]
version = "0.22.2"
version = "0.22.3"
5 changes: 5 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion dulwich/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@

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

__version__ = (0, 22, 2)
__version__ = (0, 22, 3)

0 comments on commit cd30df4

Please sign in to comment.