commit cd30df4eee8ed1f98193169a1e09594ed7cd1fb0 from: Jelmer Vernooij date: Wed Oct 16 12:54:41 2024 UTC release 0.22.3 commit - 48078d01abb84facd00a61c181026bfc9992eda6 commit + cd30df4eee8ed1f98193169a1e09594ed7cd1fb0 blob - 634e9ff2cd79437d436c0d7ad9284d7f097b5272 blob + d1e482d00d92c0a51c0d7e987a6368fb68205e55 --- .github/workflows/python-distributions.yml +++ .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 @@ -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 blob - af64da42ae18ef7b13098dc35c416a1cd6803cd7 blob + 1b1a5f747e530a507d4b9729c9f3bee5fdfd389e --- Cargo.toml +++ Cargo.toml @@ -6,4 +6,4 @@ resolver = "2" pyo3 = ">=0.19" [workspace.package] -version = "0.22.2" +version = "0.22.3" blob - 34f7941fb9906e65b195dcb60ad683a2f3db8a3a blob + 9911115f6f025c9e5ba5453912b0911dfad41b57 --- NEWS +++ 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) blob - 496dcc6d373a187477751198538b0b91223bcf3d blob + 609a98e364d371461c4b8ad9d5df73d00a035479 --- dulwich/__init__.py +++ dulwich/__init__.py @@ -22,4 +22,4 @@ """Python implementation of the Git file formats and protocols.""" -__version__ = (0, 22, 2) +__version__ = (0, 22, 3)