From 0cd3278f96a95ed2bce2efb14abe4bffc8172dc4 Mon Sep 17 00:00:00 2001 From: Varakh Date: Sat, 23 Dec 2023 23:16:24 +0100 Subject: [PATCH] Prepare next development cycle (1.0.2) --- .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 2631441..da685a7 100644 --- a/.forgejo/workflows/release.yaml +++ b/.forgejo/workflows/release.yaml @@ -5,7 +5,7 @@ on: env: VERSION_MAJOR: 1 VERSION_MINOR: 0 - VERSION_PATCH: 1 + VERSION_PATCH: 2 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 3a5a04b..ca6b521 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ Changes adhere to [semantic versioning](https://semver.org). +## [1.0.2] - UNRELEASED + +* ... + ## [1.0.1] - 2023/12/23 * Disable cleaning up stale updates and events by default diff --git a/_doc/api.yaml b/_doc/api.yaml index 3d77014..b3a02d1 100644 --- a/_doc/api.yaml +++ b/_doc/api.yaml @@ -5,7 +5,7 @@ info: license: name: GPLv3 url: https://www.gnu.org/licenses/gpl-3.0.en.html - version: 1.0.1 + version: 1.0.2 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 d13916f..7fdb888 100644 --- a/server/constants_app.go +++ b/server/constants_app.go @@ -2,5 +2,5 @@ package server const ( Name = "upda" - Version = "1.0.1" + Version = "1.0.2" )