Skip to content

Commit 2fd7019

Browse files
authored
Release v0.17.0 (#2845)
1 parent 97c6248 commit 2fd7019

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Unreleased
1+
## v0.17.0
22

33
### Added
44

doc/user/install-operator-sdk.md

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

1919
```sh
2020
# Set the release version variable
21-
$ RELEASE_VERSION=v0.16.0
21+
$ RELEASE_VERSION=v0.17.0
2222
# Linux
2323
$ curl -LO https://github.com/operator-framework/operator-sdk/releases/download/${RELEASE_VERSION}/operator-sdk-${RELEASE_VERSION}-x86_64-linux-gnu
2424
# macOS

internal/scaffold/ansible/go_mod.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const goModTmpl = `module {{ .Repo }}
4242
go 1.13
4343
4444
require (
45-
github.com/operator-framework/operator-sdk master
45+
github.com/operator-framework/operator-sdk v0.17.0
4646
sigs.k8s.io/controller-runtime v0.5.2
4747
)
4848

internal/scaffold/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 master
44+
github.com/operator-framework/operator-sdk v0.17.0
4545
sigs.k8s.io/controller-runtime v0.5.2
4646
)
4747

internal/scaffold/helm/go_mod.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const goModTmpl = `module {{ .Repo }}
4242
go 1.13
4343
4444
require (
45-
github.com/operator-framework/operator-sdk master
45+
github.com/operator-framework/operator-sdk v0.17.0
4646
sigs.k8s.io/controller-runtime v0.5.2
4747
)
4848

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.16.0+git"
24+
Version = "v0.17.0"
2525
GitVersion = "unknown"
2626
GitCommit = "unknown"
2727
KubernetesVersion = "unknown"

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
title: Install the Operator SDK CLI
2+
title: Install the Operator SDK CLI
33
linkTitle: Installation
4-
weight: 1
4+
weight: 1
55
---
66
{{% alert title="Warning" color="warning" %}}
77
These pages are under construction. Please continue to use the [docs in
@@ -27,7 +27,7 @@ $ brew install operator-sdk
2727

2828
```sh
2929
# Set the release version variable
30-
$ RELEASE_VERSION=v0.16.0
30+
$ RELEASE_VERSION=v0.17.0
3131
# Linux
3232
$ curl -LO https://github.com/operator-framework/operator-sdk/releases/download/${RELEASE_VERSION}/operator-sdk-${RELEASE_VERSION}-x86_64-linux-gnu
3333
# macOS

0 commit comments

Comments
 (0)