Skip to content

Commit

Permalink
Release v0.17.0 (operator-framework#2845)
Browse files Browse the repository at this point in the history
  • Loading branch information
estroz authored Apr 15, 2020
1 parent 97c6248 commit 2fd7019
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Unreleased
## v0.17.0

### Added

Expand Down
2 changes: 1 addition & 1 deletion doc/user/install-operator-sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ $ brew install operator-sdk

```sh
# Set the release version variable
$ RELEASE_VERSION=v0.16.0
$ RELEASE_VERSION=v0.17.0
# Linux
$ curl -LO https://github.com/operator-framework/operator-sdk/releases/download/${RELEASE_VERSION}/operator-sdk-${RELEASE_VERSION}-x86_64-linux-gnu
# macOS
Expand Down
2 changes: 1 addition & 1 deletion internal/scaffold/ansible/go_mod.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const goModTmpl = `module {{ .Repo }}
go 1.13
require (
github.com/operator-framework/operator-sdk master
github.com/operator-framework/operator-sdk v0.17.0
sigs.k8s.io/controller-runtime v0.5.2
)
Expand Down
2 changes: 1 addition & 1 deletion internal/scaffold/go_mod.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const goModTmpl = `module {{ .Repo }}
go 1.13
require (
github.com/operator-framework/operator-sdk master
github.com/operator-framework/operator-sdk v0.17.0
sigs.k8s.io/controller-runtime v0.5.2
)
Expand Down
2 changes: 1 addition & 1 deletion internal/scaffold/helm/go_mod.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const goModTmpl = `module {{ .Repo }}
go 1.13
require (
github.com/operator-framework/operator-sdk master
github.com/operator-framework/operator-sdk v0.17.0
sigs.k8s.io/controller-runtime v0.5.2
)
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (

//var needs to be used instead of const for ldflags
var (
Version = "v0.16.0+git"
Version = "v0.17.0"
GitVersion = "unknown"
GitCommit = "unknown"
KubernetesVersion = "unknown"
Expand Down
6 changes: 3 additions & 3 deletions website/content/en/docs/install-operator-sdk.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Install the Operator SDK CLI
title: Install the Operator SDK CLI
linkTitle: Installation
weight: 1
weight: 1
---
{{% alert title="Warning" color="warning" %}}
These pages are under construction. Please continue to use the [docs in
Expand All @@ -27,7 +27,7 @@ $ brew install operator-sdk

```sh
# Set the release version variable
$ RELEASE_VERSION=v0.16.0
$ RELEASE_VERSION=v0.17.0
# Linux
$ curl -LO https://github.com/operator-framework/operator-sdk/releases/download/${RELEASE_VERSION}/operator-sdk-${RELEASE_VERSION}-x86_64-linux-gnu
# macOS
Expand Down

0 comments on commit 2fd7019

Please sign in to comment.