Prepare next dev
All checks were successful
/ build (push) Successful in 4m56s

This commit is contained in:
Varakh 2024-06-10 23:21:44 +02:00
parent 9259299a56
commit abc78036d0
5 changed files with 8 additions and 4 deletions

View file

@ -5,7 +5,7 @@ on:
env: env:
VERSION_MAJOR: 3 VERSION_MAJOR: 3
VERSION_MINOR: 0 VERSION_MINOR: 0
VERSION_PATCH: 0 VERSION_PATCH: 1
IMAGE_TAG: varakh/upda IMAGE_TAG: varakh/upda
IMAGE_TAG_PRIVATE: git.myservermanager.com/varakh/upda IMAGE_TAG_PRIVATE: git.myservermanager.com/varakh/upda
FORGEJO_URL: https://git.myservermanager.com FORGEJO_URL: https://git.myservermanager.com

View file

@ -2,6 +2,10 @@
Changes adhere to [semantic versioning](https://semver.org). Changes adhere to [semantic versioning](https://semver.org).
## [3.0.1] - UNRELEASED
* ...
## [3.0.0] - 2024/06/10 ## [3.0.0] - 2024/06/10
> This is a major version upgrade. Other versions are incompatible with this release. > This is a major version upgrade. Other versions are incompatible with this release.

View file

@ -2,7 +2,7 @@ openapi: 3.0.3
info: info:
title: upda title: upda
description: API specification description: API specification
version: 3.0.0 version: 3.0.1
externalDocs: externalDocs:
description: Find out more about the project description: Find out more about the project
url: https://git.myservermanager.com/varakh/upda url: https://git.myservermanager.com/varakh/upda

View file

@ -2,5 +2,5 @@ package server
const ( const (
name = "upda" name = "upda"
version = "3.0.0" version = "3.0.1"
) )

View file

@ -16,7 +16,7 @@ import (
const ( const (
name = "upda-cli" name = "upda-cli"
desc = "a commandline helper for upda" desc = "a commandline helper for upda"
version = "3.0.0" version = "3.0.1"
envServerUrl = "UPDA_SERVER_URL" envServerUrl = "UPDA_SERVER_URL"
envUser = "UPDA_USER" envUser = "UPDA_USER"