Skip to content

Commit c05841c

Browse files
post-release v0.19.1 (#3586)
1 parent 24395e1 commit c05841c

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

internal/scaffold/ansible/go_mod.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const goModTmpl = `module {{ .Repo }}
4141
go 1.13
4242
4343
require (
44-
github.com/operator-framework/operator-sdk v0.19.1
44+
github.com/operator-framework/operator-sdk v0.19.x
4545
sigs.k8s.io/controller-runtime v0.6.0
4646
)
4747

internal/scaffold/go_mod.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const goModTmpl = `module {{ .Repo }}
4040
go 1.13
4141
4242
require (
43-
github.com/operator-framework/operator-sdk v0.19.1
43+
github.com/operator-framework/operator-sdk v0.19.x
4444
sigs.k8s.io/controller-runtime v0.6.0
4545
)
4646

internal/scaffold/helm/go_mod.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const goModTmpl = `module {{ .Repo }}
4141
go 1.13
4242
4343
require (
44-
github.com/operator-framework/operator-sdk v0.19.1
44+
github.com/operator-framework/operator-sdk v0.19.x
4545
sigs.k8s.io/controller-runtime v0.6.0
4646
)
4747

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121

2222
//var needs to be used instead of const for ldflags
2323
var (
24-
Version = "v0.19.1"
24+
Version = "v0.19.1+git"
2525
GitVersion = "unknown"
2626
GitCommit = "unknown"
2727
KubernetesVersion = "unknown"

website/content/en/docs/install-operator-sdk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ $ brew install operator-sdk
2222

2323
```sh
2424
# Set the release version variable
25-
$ RELEASE_VERSION=v0.19.1
25+
$ RELEASE_VERSION=v0.19.x
2626
# Linux
2727
$ curl -LO https://github.com/operator-framework/operator-sdk/releases/download/${RELEASE_VERSION}/operator-sdk-${RELEASE_VERSION}-x86_64-linux-gnu
2828
$ curl -LO https://github.com/operator-framework/operator-sdk/releases/download/${RELEASE_VERSION}/ansible-operator-${RELEASE_VERSION}-x86_64-linux-gnu

0 commit comments

Comments
 (0)