Skip to content

Commit

Permalink
*: release v0.11.0 (#2047)
Browse files Browse the repository at this point in the history
  • Loading branch information
hasbro17 authored Oct 11, 2019
1 parent 2ce7a17 commit 39c65c3
Show file tree
Hide file tree
Showing 9 changed files with 15 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.11.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.10.0
$ RELEASE_VERSION=v0.11.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: 2 additions & 0 deletions internal/pkg/scaffold/ansible/go_mod.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ replace (
// resolve it correctly.
github.com/prometheus/prometheus => github.com/prometheus/prometheus d20e84d0fb64aff2f62a977adc8cfb656da4e286
)
replace github.com/operator-framework/operator-sdk => github.com/operator-framework/operator-sdk v0.11.0
`

func PrintGoMod() error {
Expand Down
4 changes: 2 additions & 2 deletions internal/pkg/scaffold/ansible/gopkgtoml.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ func (s *GopkgToml) GetInput() (input.Input, error) {
const gopkgTomlTmpl = `[[constraint]]
name = "github.com/operator-framework/operator-sdk"
# The version rule is used for a specific release and the master branch for in between releases.
branch = "master" #osdk_branch_annotation
# version = "=v0.10.0" #osdk_version_annotation
# branch = "master" #osdk_branch_annotation
version = "=v0.11.0" #osdk_version_annotation
[[override]]
name = "k8s.io/api"
Expand Down
2 changes: 2 additions & 0 deletions internal/pkg/scaffold/go_mod.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ replace (
// resolve it correctly.
github.com/prometheus/prometheus => github.com/prometheus/prometheus d20e84d0fb64aff2f62a977adc8cfb656da4e286
)
replace github.com/operator-framework/operator-sdk => github.com/operator-framework/operator-sdk v0.11.0
`

func PrintGoMod() error {
Expand Down
4 changes: 2 additions & 2 deletions internal/pkg/scaffold/gopkgtoml.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ const gopkgTomlTmpl = `[[override]]
[[constraint]]
name = "github.com/operator-framework/operator-sdk"
# The version rule is used for a specific release and the master branch for in between releases.
branch = "master" #osdk_branch_annotation
# version = "=v0.10.0" #osdk_version_annotation
# branch = "master" #osdk_branch_annotation
version = "=v0.11.0" #osdk_version_annotation
[prune]
go-tests = true
Expand Down
2 changes: 2 additions & 0 deletions internal/pkg/scaffold/helm/go_mod.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@ replace (
// resolve it correctly.
github.com/prometheus/prometheus => github.com/prometheus/prometheus d20e84d0fb64aff2f62a977adc8cfb656da4e286
)
replace github.com/operator-framework/operator-sdk => github.com/operator-framework/operator-sdk v0.11.0
`

func PrintGoMod() error {
Expand Down
4 changes: 2 additions & 2 deletions internal/pkg/scaffold/helm/gopkgtoml.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ func (s *GopkgToml) GetInput() (input.Input, error) {
const gopkgTomlTmpl = `[[constraint]]
name = "github.com/operator-framework/operator-sdk"
# The version rule is used for a specific release and the master branch for in between releases.
branch = "master" #osdk_branch_annotation
# version = "=v0.10.0" #osdk_version_annotation
# branch = "master" #osdk_branch_annotation
version = "=v0.11.0" #osdk_version_annotation
[[override]]
name = "k8s.io/api"
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
)

var (
Version = "v0.10.0+git"
Version = "v0.11.0"
GitVersion = "unknown"
GitCommit = "unknown"
GoVersion = fmt.Sprintf("%s %s/%s", runtime.Version(), runtime.GOOS, runtime.GOARCH)
Expand Down

0 comments on commit 39c65c3

Please sign in to comment.