27 Commits
0.1.24 ... dev

Author SHA1 Message Date
d2bcb57d53 fix typo 2025-05-29 12:41:42 +02:00
7bacf6deb6 tell changelog to use feature label 2025-05-29 12:41:06 +02:00
9c5e4d0510 test 2025-05-29 12:31:06 +02:00
bf687305ef re-enable changelog 2025-05-29 12:26:25 +02:00
474d92e180 test: do not use changelog template 2025-05-29 12:23:32 +02:00
73d406e18d refactor: enhance changelog categories with additional labels 2025-05-29 12:18:57 +02:00
6fdfdbee31 remove unnecessary print statement for missing version file 2025-05-29 12:17:02 +02:00
dd97c0d68a experiment: include fetch depth, tags 2025-05-29 12:13:37 +02:00
a0154f345c remove release note string 2025-05-29 11:56:30 +02:00
6598e30a42 update hello.py 2025-05-29 11:50:31 +02:00
b07928c8af remove commit mode 2025-05-29 11:50:23 +02:00
Gitea CI
3a47378dc1 Bump version: 1.0.0 → 1.0.1 2025-05-29 09:47:10 +00:00
09c240089f just some bs to hopefully show up in changelog 2025-05-29 11:46:43 +02:00
Gitea CI
9c130ac1d0 Bump version: 0.1.29 → 1.0.0 2025-05-29 09:44:21 +00:00
Gitea CI
721e817b20 Bump version: 0.1.28 → 0.1.29 2025-05-29 09:43:22 +00:00
4a51f0c8e1 add v to release tag 2025-05-29 11:42:55 +02:00
bacdf95171 Add success message after script execution 2025-05-29 11:42:16 +02:00
Gitea CI
b9143544c4 Bump version: 0.1.27 → 0.1.28 2025-05-29 09:17:18 +00:00
4e59dfad54 Refactor release workflow: uncomment and configure push changes, build changelog, and create release steps 2025-05-29 11:16:56 +02:00
a0d0535044 Enable tagging and commit options in bumpversion configuration 2025-05-29 11:15:29 +02:00
ea16d817e1 Remove --locked option from uv sync command in release workflow 2025-05-29 11:13:40 +02:00
9e2621cd60 move bump to pyproject 2025-05-29 11:10:20 +02:00
655b6c0df5 Bump version: 0.1.26 → 0.1.27 2025-05-29 11:09:47 +02:00
605dc750e7 Bump version: 0.1.25 → 0.1.26 2025-05-29 11:09:47 +02:00
78faddf56e Bump version: 0.1.24 → 0.1.25 2025-05-29 11:09:47 +02:00
2686d822cd Update .gitea/workflows/relase.yml 2025-05-29 10:02:47 +01:00
a121e59f47 Refactor release workflow by commenting out unused steps for clarity 2025-05-29 11:01:48 +02:00
6 changed files with 44 additions and 34 deletions

View File

@@ -1,22 +0,0 @@
[tool.bumpversion]
current_version = "0.1.24"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"
replace = "{new_version}"
regex = false
ignore_missing_version = false
ignore_missing_files = false
tag = true
sign_tags = false
tag_name = "v{new_version}"
tag_message = "Bump version: {current_version} → {new_version}"
allow_dirty = false
commit = true
message = "Bump version: {current_version} → {new_version}"
commit_args = ""
setup_hooks = []
pre_commit_hooks = []
post_commit_hooks = []
[[tool.bumpversion.files]]
filename = ".version"

View File

@@ -2,11 +2,18 @@
"categories": [
{
"title": "## 🚀 Features",
"labels": ["add","Add"]
"labels": [
"add",
"Add",
"Kind/Feature"
]
},
{
"title": "## 🐛 Fixes",
"labels": ["fix","Fix"]
"labels": [
"fix",
"Fix"
]
},
{
"title": "## 🧪 Upgrade",

View File

@@ -1,10 +1,6 @@
on:
workflow_dispatch:
inputs:
release_notes:
description: Release notes (use \n for newlines)
type: string
required: false
github_release:
description: 'Create Gitea Release'
default: true
@@ -28,6 +24,9 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch full history
fetch-tags: true # Fetch all tags (refs/tags)
- name: Install uv
uses: astral-sh/setup-uv@v5
@@ -37,7 +36,7 @@ jobs:
python-version-file: "pyproject.toml"
- name: Install the project
run: uv sync --locked --all-extras --dev
run: uv sync --all-extras --dev
- name: Set Git identity
run: |
git config user.name "Gitea CI"
@@ -52,7 +51,9 @@ jobs:
echo "$(uv tool run bump-my-version show current_version)" >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
- name: Check version
run: echo ${{ env.VERSION }}
run: |
echo ${{ env.VERSION }}
cat pyproject.toml
- name: Push changes
uses: ad-m/github-push-action@master
with:
@@ -63,6 +64,7 @@ jobs:
id: build_changelog
uses: https://github.com/mikepenz/release-changelog-builder-action@v5
with:
platform: "gitea"
baseURL: "http://gitea:3000"
configuration: ".gitea/changelog-config.json"
@@ -75,7 +77,7 @@ jobs:
if: ${{ github.event.inputs.github_release == 'true' }}
uses: softprops/action-gh-release@master
with:
tag_name: ${{ env.VERSION }}
tag_name: v${{ env.VERSION }}
release_name: Release ${{ env.VERSION }}
body: ${{steps.build_changelog.outputs.changelog}}
draft: false

View File

@@ -1 +1 @@
0.1.24
0.1.27

View File

@@ -6,7 +6,8 @@ def main():
def get_version():
with open(".version") as f:
return f.read().strip()
print("Done")
if __name__ == "__main__":
main()
print("This script has been executed successfully.")

View File

@@ -1,6 +1,6 @@
[project]
name = "workflowbumptester"
version = "0.1.0"
version = "1.0.1"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
@@ -8,3 +8,25 @@ dependencies = [
"bump-my-version>=1.1.3",
"pyyaml>=6.0.2",
]
[tool.bumpversion]
current_version = "1.0.1"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"
replace = "{new_version}"
regex = false
ignore_missing_version = false
ignore_missing_files = false
tag = true
sign_tags = false
tag_name = "v{new_version}"
tag_message = "Bump version: {current_version} → {new_version}"
allow_dirty = true
commit = true
message = "Bump version: {current_version} → {new_version}"
moveable_tags = []
commit_args = ""
setup_hooks = []
pre_commit_hooks = []
post_commit_hooks = []