Commit d066d46f authored by Steven's avatar Steven

chore: tweak schema version

parent d54c8065
......@@ -9,10 +9,10 @@ import (
// Version is the service current released version.
// Semantic versioning: https://semver.org/
var Version = "0.22.6"
var Version = "0.23.0"
// DevVersion is the service current development version.
var DevVersion = "0.22.6"
var DevVersion = "0.23.0"
func GetCurrentVersion(mode string) string {
if mode == "dev" || mode == "demo" {
......
......@@ -13,5 +13,5 @@ func TestGetCurrentSchemaVersion(t *testing.T) {
currentSchemaVersion, err := ts.GetCurrentSchemaVersion()
require.NoError(t, err)
require.Equal(t, "0.22.5", currentSchemaVersion)
require.Equal(t, "0.23.1", currentSchemaVersion)
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment