Skip to content

Commit 63373d7

Browse files
committed
Change schema version to 0.3.0
1 parent 3044b9a commit 63373d7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

cmd/icinga-kubernetes/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ import (
4141
"time"
4242
)
4343

44-
const expectedSchemaVersion = "0.2.0"
44+
const expectedSchemaVersion = "0.3.0"
4545

4646
func main() {
4747
runtime.ReallyCrash = true

internal/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ import (
77
// Version contains version and Git commit information.
88
//
99
// The placeholders are replaced on `git archive` using the `export-subst` attribute.
10-
var Version = version.Version("Icinga Kubernetes", "0.2.0", "$Format:%(describe)$", "$Format:%H$")
10+
var Version = version.Version("Icinga Kubernetes", "0.3.0", "$Format:%(describe)$", "$Format:%H$")

schema/mysql/schema.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -1034,4 +1034,4 @@ CREATE TABLE kubernetes_schema (
10341034
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
10351035

10361036
INSERT INTO kubernetes_schema (version, timestamp, success, reason)
1037-
VALUES ('0.2.0', UNIX_TIMESTAMP() * 1000, 'y', 'Initial import');
1037+
VALUES ('0.3.0', UNIX_TIMESTAMP() * 1000, 'y', 'Initial import');

0 commit comments

Comments
 (0)