Skip to content

Commit 682ace0

Browse files
committed
intapi: features: fix and clarify version
this API version is very vaguely correlated with the operator version. Change the value to emphasize this fact. Signed-off-by: Francesco Romani <fromani@redhat.com>
1 parent ce752f9 commit 682ace0

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

internal/api/features/types.go

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,13 @@ import (
2323
)
2424

2525
const (
26-
Version = "v5.0.0"
26+
// Version is the version of the API, and covers data layout.
27+
// The version should be bumped when the API definition changes,
28+
// and is not strictly tied to the operator version.
29+
// The payload (e.g. active topics) may and will changes even
30+
// within the same operator version; e.g. is totally legit
31+
// to add more topics during a Z stream.
32+
Version = "v1.0.0"
2733
)
2834

2935
type Metadata struct {

0 commit comments

Comments
 (0)