generated from Templates/Baseline
prepare release #23
37
.vscode/tasks.json
vendored
Normal file
37
.vscode/tasks.json
vendored
Normal 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"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
13
CHANGELOG.md
13
CHANGELOG.md
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user