Skip to content

Commit 6a4671b

Browse files
committed
bump: version 5.1.0 → 5.1.1
1 parent 1d776c4 commit 6a4671b

File tree

3 files changed

+16
-10
lines changed

3 files changed

+16
-10
lines changed

.cz.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ commitizen:
66
name: cz_conventional_commits
77
tag_format: v$version
88
update_changelog_on_bump: true
9-
version: 5.1.0
9+
version: 5.1.1
1010
version_files:
1111
- README.md
1212
version_scheme: semver

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## v5.1.1 (2025-07-30)
2+
3+
### Fix
4+
5+
- **pypi-upload**: set correct build-arg (#107)
6+
17
## v5.1.0 (2025-07-01)
28

39
### Feat

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353

5454
- name: Import GPG key
5555
id: gpg-import
56-
uses: coatl-dev/actions/gpg-import@v5.1.0
56+
uses: coatl-dev/actions/gpg-import@v5.1.1
5757
with:
5858
passphrase: ${{ secrets.GPG_PASSPHRASE }}
5959
private-key: ${{ secrets.GPG_PRIVATE_KEY }}
@@ -105,14 +105,14 @@ jobs:
105105
uses: actions/checkout@v4
106106
107107
- name: pip-compile-27
108-
uses: coatl-dev/actions/pip-compile-upgrade@v5.1.0
108+
uses: coatl-dev/actions/pip-compile-upgrade@v5.1.1
109109
with:
110110
path: "${{ env.REQUIREMENTS_PATH }}"
111111
extra-args: '--reuse-hashes'
112112
113113
- name: Detect changes
114114
id: git-diff
115-
uses: coatl-dev/actions/simple-git-diff@v5.1.0
115+
uses: coatl-dev/actions/simple-git-diff@v5.1.1
116116
with:
117117
path: "${{ env.REQUIREMENTS_PATH }}"
118118
@@ -147,7 +147,7 @@ Add this step to your workflow:
147147

148148
```yml
149149
- name: Create Pull Request
150-
uses: coatl-dev/actions/pr-create@v5.1.0
150+
uses: coatl-dev/actions/pr-create@v5.1.1
151151
with:
152152
gh-token: ${{ secrets.GH_TOKEN }}
153153
```
@@ -182,7 +182,7 @@ GitHub action to build and upload your Python distribution packages to PyPI
182182

183183
```yml
184184
- name: Upload Python package to PyPI
185-
uses: coatl-dev/actions/pypi-upload@v5.1.0
185+
uses: coatl-dev/actions/pypi-upload@v5.1.1
186186
with:
187187
python-version: '2.7'
188188
check: 'false'
@@ -219,7 +219,7 @@ Set up a specific version of Jython and add the command-line tools to the PATH.
219219

220220
```yml
221221
- name: Set up Jython
222-
uses: coatl-dev/actions/setup-jython@v5.1.0
222+
uses: coatl-dev/actions/setup-jython@v5.1.1
223223
with:
224224
jython-version: '2.7.3'
225225
- run: jython my_script.py
@@ -262,7 +262,7 @@ jobs:
262262
263263
- name: Detect changes
264264
id: git-diff
265-
uses: coatl-dev/actions/simple-git-diff@v5.1.0
265+
uses: coatl-dev/actions/simple-git-diff@v5.1.1
266266
with:
267267
path: 'README.md'
268268
@@ -312,14 +312,14 @@ jobs:
312312
uses: actions/checkout@v4
313313
314314
- name: pip-compile-312
315-
uses: coatl-dev/actions/uv-pip-compile-upgrade@v5.1.0
315+
uses: coatl-dev/actions/uv-pip-compile-upgrade@v5.1.1
316316
with:
317317
path: "${{ env.REQUIREMENTS_PATH }}"
318318
python-version: '3.12'
319319
320320
- name: Detect changes
321321
id: git-diff
322-
uses: coatl-dev/actions/simple-git-diff@v5.1.0
322+
uses: coatl-dev/actions/simple-git-diff@v5.1.1
323323
with:
324324
path: "${{ env.REQUIREMENTS_PATH }}"
325325

0 commit comments

Comments
 (0)