From b20530941e5226f1325763372059b9ef28a942dc Mon Sep 17 00:00:00 2001 From: Varakh Date: Sun, 28 Apr 2024 23:04:20 +0200 Subject: [PATCH] Prepare next dev cycle #noissue --- .forgejo/workflows/release.yaml | 2 +- CHANGELOG.md | 4 ++++ _doc/api.yaml | 2 +- server/constants_app.go | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/release.yaml b/.forgejo/workflows/release.yaml index 28695cc..de4b407 100644 --- a/.forgejo/workflows/release.yaml +++ b/.forgejo/workflows/release.yaml @@ -5,7 +5,7 @@ on: env: VERSION_MAJOR: 2 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 diff --git a/CHANGELOG.md b/CHANGELOG.md index a4f6cdd..83bfc64 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ Changes adhere to [semantic versioning](https://semver.org). +## [2.0.1] - UNRELEASED + +* ... + ## [2.0.0] - 2024/04/28 > This is a major version upgrade. Other versions are incompatible with this release. diff --git a/_doc/api.yaml b/_doc/api.yaml index a84bbe8..3927a23 100644 --- a/_doc/api.yaml +++ b/_doc/api.yaml @@ -2,7 +2,7 @@ openapi: 3.0.3 info: title: upda description: API specification - version: 2.0.0 + version: 2.0.1 externalDocs: description: Find out more about the project url: https://git.myservermanager.com/varakh/upda diff --git a/server/constants_app.go b/server/constants_app.go index 72707a8..3e4ca8c 100644 --- a/server/constants_app.go +++ b/server/constants_app.go @@ -2,5 +2,5 @@ package server const ( Name = "upda" - Version = "2.0.0" + Version = "2.0.1" )