From e704904ed10daf9fe1753695a7506277dc014a46 Mon Sep 17 00:00:00 2001 From: Marc Ole Bulling Date: Fri, 12 Jul 2024 19:52:24 +0200 Subject: [PATCH] Updated version numbers --- cmd/gokapi/Main.go | 2 +- internal/configuration/database/provider/sqlite/Sqlite.go | 2 +- internal/webserver/web/templates/string_constants.tmpl | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/gokapi/Main.go b/cmd/gokapi/Main.go index 0b8f3eb..e411c00 100644 --- a/cmd/gokapi/Main.go +++ b/cmd/gokapi/Main.go @@ -33,7 +33,7 @@ import ( // versionGokapi is the current version in readable form. // Other version numbers can be modified in /build/go-generate/updateVersionNumbers.go -const versionGokapi = "1.8.4" +const versionGokapi = "1.9.0-beta" // The following calls update the version numbers, update documentation, minify Js/CSS and build the WASM modules //go:generate go run "../../build/go-generate/updateVersionNumbers.go" diff --git a/internal/configuration/database/provider/sqlite/Sqlite.go b/internal/configuration/database/provider/sqlite/Sqlite.go index 355fd59..6895275 100644 --- a/internal/configuration/database/provider/sqlite/Sqlite.go +++ b/internal/configuration/database/provider/sqlite/Sqlite.go @@ -17,7 +17,7 @@ type DatabaseProvider struct { sqliteDb *sql.DB } -const DatabaseSchemeVersion = 2 +const DatabaseSchemeVersion = 3 // New returns an instance func New(dbConfig models.DbConnection) (DatabaseProvider, error) { diff --git a/internal/webserver/web/templates/string_constants.tmpl b/internal/webserver/web/templates/string_constants.tmpl index 915a8c3..e9aad95 100644 --- a/internal/webserver/web/templates/string_constants.tmpl +++ b/internal/webserver/web/templates/string_constants.tmpl @@ -1,5 +1,5 @@ // Change these for rebranding -{{define "version"}}1.8.4{{end}} +{{define "version"}}1.9.0-beta{{end}} // Specifies the version of JS files, so that the browser doesn't // use a cached version, if the file has been updated