File tree 4 files changed +10
-3
lines changed
4 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,8 @@ name: Build Python distributions
3
3
on :
4
4
push :
5
5
branches : [ main, master ]
6
+ tags :
7
+ - ' dulwich-*'
6
8
pull_request :
7
9
schedule :
8
10
- cron : " 0 6 * * *" # Daily 6AM UTC build
32
34
- name : Select build identifiers
33
35
id : select-build-identifiers
34
36
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
36
38
echo 'linux=${{ steps.all-build-identifiers.outputs.linux }}' >> $GITHUB_OUTPUT
37
39
echo 'windows=${{ steps.all-build-identifiers.outputs.windows }}' >> $GITHUB_OUTPUT
38
40
echo 'macos=${{ steps.all-build-identifiers.outputs.macos }}' >> $GITHUB_OUTPUT
Original file line number Diff line number Diff line change @@ -6,4 +6,4 @@ resolver = "2"
6
6
pyo3 = " >=0.19"
7
7
8
8
[workspace .package ]
9
- version = " 0.22.2 "
9
+ version = " 0.22.3 "
Original file line number Diff line number Diff line change
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
+
1
6
0.22.2 2024-10-09
2
7
3
8
* Ship ``Cargo.lock``. (Jelmer Vernooij, #1287)
Original file line number Diff line number Diff line change 22
22
23
23
"""Python implementation of the Git file formats and protocols."""
24
24
25
- __version__ = (0 , 22 , 2 )
25
+ __version__ = (0 , 22 , 3 )
You can’t perform that action at this time.
0 commit comments