update changelog
All checks were successful
ci / docker (pull_request) Successful in 14s

This commit is contained in:
OCram85 2024-06-20 17:32:57 +02:00
parent cd9ed77875
commit 78d6610963
2 changed files with 50 additions and 0 deletions

37
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,37 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Update GiteaChangelog",
"type": "shell",
"command": [
"mv 'CHANGELOG.md' 'CHANGELOG.back' &&",
"changelog -m '${input:Milestone}' --token '${input:GiteaToken}' -c .changelog.yml generate > CHANGELOG.md &&",
"echo '' >> CHANGELOG.md &&",
"cat CHANGELOG.back >> CHANGELOG.md &&",
"rm CHANGELOG.back"
],
"problemMatcher": []
}
],
"inputs": [
{
"id": "GiteaToken",
"type": "command",
"command": "shellCommand.execute",
"args": {
"command": "echo $GITEA_TOKEN",
"description": "Your personal Gitea access token"
}
},
{
"id": "Milestone",
"type": "command",
"command": "shellCommand.execute",
"args": {
"description": "Select or enter a open milestone",
"command": "tea milestone ls -f title --output simple"
}
}
]
}

View File

@ -1,3 +1,16 @@
## [v0.1.1](https://gitea.ocram85.com/OCram85/swarmproxy/releases/tag/v0.1.1) - 2024-06-20
* ✨ FEATURES
* Adds timezone support (#14)
* 🤖 DEPENDENCIES
* Chore(deps): update actions/build-push-action action to v6 (#22)
* Chore(deps): update actions/setup-buildx-action action to v3 (#21)
* Chore(deps): update actions/metadata-action action to v5 (#20)
* Chore(deps): update actions/login-action action to v3 (#19)
* Chore(deps): update actions/checkout action to v4 (#18)
* Chore(deps): update alpine docker tag to v3.20.0 (#16)
* Update alpine Docker tag to v3.18.4 (#15)
## [v0.1.0](https://gitea.ocram85.com/OCram85/swarmproxy/releases/tag/v0.1.0) - 2023-07-13
* ✨ FEATURES