This commit is contained in:
parent
0137317a0a
commit
18c199efb5
7 changed files with 11 additions and 5 deletions
|
@ -5,7 +5,7 @@ on:
|
|||
env:
|
||||
VERSION_MAJOR: 5
|
||||
VERSION_MINOR: 0
|
||||
VERSION_PATCH: 0
|
||||
VERSION_PATCH: 1
|
||||
IMAGE_TAG: varakh/upda
|
||||
IMAGE_TAG_PRIVATE: git.myservermanager.com/varakh/upda
|
||||
FORGEJO_URL: https://git.myservermanager.com
|
||||
|
|
|
@ -2,6 +2,10 @@
|
|||
|
||||
Changes adhere to [semantic versioning](https://semver.org).
|
||||
|
||||
## [5.0.1] - UNRELEASED
|
||||
|
||||
* ...
|
||||
|
||||
## [5.0.0] - 2024/12/21
|
||||
|
||||
> This is a major version upgrade. Other versions are incompatible with this release.
|
||||
|
|
|
@ -126,6 +126,7 @@ platform, uploads produced artifacts to that release and publishes docker images
|
|||
built successfully:
|
||||
|
||||
* Adapt `commons/constants.go` and change `Version` to the correct version number
|
||||
* Adapt `server/web/package.json` and change `version` to the correct version number
|
||||
* Adapt `CHANGELOG.md` to reflect changes and ensure a date is properly set in the header, also add a reference link
|
||||
in footer (link to scm git tag source)
|
||||
* Adapt `api.yaml`: `version` attribute must reflect the to be released version
|
||||
|
@ -134,6 +135,7 @@ built successfully:
|
|||
After the release has been created, ensure to change the following settings for the _next development cycle_:
|
||||
|
||||
* Adapt `commons/constants.go` and change `Version` to the _next_ version number
|
||||
* Adapt `server/web/package.json` and change `version` to the _next_ version number
|
||||
* Adapt `CHANGELOG.md` and add an _UNRELEASED_ section
|
||||
* Adapt `api.yaml`: `version` attribute must reflect the _next_ version number
|
||||
* Adapt `env: VERSION_*` in `.forgejo/workflows/release.yaml` to _next_ version number
|
||||
|
|
|
@ -2,7 +2,7 @@ openapi: 3.0.3
|
|||
info:
|
||||
title: upda
|
||||
description: API specification
|
||||
version: 5.0.0
|
||||
version: 5.0.1
|
||||
externalDocs:
|
||||
description: Find out more about the project
|
||||
url: https://git.myservermanager.com/varakh/upda
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
package commons
|
||||
|
||||
const (
|
||||
Version = "5.0.0"
|
||||
Version = "5.0.1"
|
||||
)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "upda-ui",
|
||||
"version": "5.0.0",
|
||||
"version": "5.0.1",
|
||||
"private": true,
|
||||
"author": "varakh@varakh.de",
|
||||
"type": "module",
|
||||
|
|
|
@ -392,7 +392,7 @@
|
|||
"version": "Version"
|
||||
},
|
||||
"version": {
|
||||
"number": "5.0.0",
|
||||
"number": "5.0.1",
|
||||
"version": "Version"
|
||||
},
|
||||
"webhook": {
|
||||
|
|
Loading…
Reference in a new issue