2 Commits

Author SHA1 Message Date
Gitea CI
0e2e20ea28 Bump version: 0.1.10 → 0.1.11 2025-05-21 08:56:30 +00:00
7796df45e5 test new changelog generator 2025-05-21 10:55:31 +02:00
3 changed files with 11 additions and 7 deletions

View File

@@ -1,5 +1,5 @@
[tool.bumpversion]
current_version = "0.1.10"
current_version = "0.1.11"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"

View File

@@ -64,12 +64,16 @@ jobs:
echo "RELEASE_NOTES<<EOF" >> $GITHUB_ENV
echo "${{ github.event.inputs.release_notes }}" >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
- name: Update CHANGELOG
- name: Generate changelog
id: changelog
uses: requarks/changelog-action@v1
uses: metcalfc/changelog-generator@v4.6.2
with:
token: ${{ secrets.TOKEN }}
tag: ${{ github.ref_name }}
myToken: ${{ secrets.TOKEN }}
- name: Get the changelog
run: |
cat << "EOF"
${{ steps.changelog.outputs.changelog }}
EOF
- name: Create release
id: create_release
@@ -78,7 +82,7 @@ jobs:
with:
tag_name: ${{ env.VERSION }}
release_name: Release ${{ env.VERSION }}
body: ${{ steps.changelog.outputs.changes }}
body: ${{ steps.changelog.outputs.changelog }}
draft: false
prerelease: false
make_latest: true

View File

@@ -1 +1 @@
0.1.10
0.1.11