4 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
Gitea CI
ae8d2b01b3 Bump version: 0.1.9 → 0.1.10 2025-05-21 08:51:04 +00:00
3bf862d843 Update .gitea/workflows/relase.yml 2025-05-21 09:50:28 +01:00
3 changed files with 14 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
[tool.bumpversion]
current_version = "0.1.9"
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,7 +64,17 @@ jobs:
echo "RELEASE_NOTES<<EOF" >> $GITHUB_ENV
echo "${{ github.event.inputs.release_notes }}" >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
- name: Generate changelog
id: changelog
uses: metcalfc/changelog-generator@v4.6.2
with:
myToken: ${{ secrets.TOKEN }}
- name: Get the changelog
run: |
cat << "EOF"
${{ steps.changelog.outputs.changelog }}
EOF
- name: Create release
id: create_release
if: ${{ github.event.inputs.github_release == 'true' }}
@@ -72,7 +82,7 @@ jobs:
with:
tag_name: ${{ env.VERSION }}
release_name: Release ${{ env.VERSION }}
body: ${{ steps.changelog.outputs.changelog }}
draft: false
prerelease: false
make_latest: true

View File

@@ -1 +1 @@
0.1.9
0.1.11