Skip to content

Commit

Permalink
*: release v0.10.1 (#2038)
Browse files Browse the repository at this point in the history
* cherry picked commit

* backport second bug fix

* revert previous backport

* update versions
  • Loading branch information
Ish Shah authored Oct 10, 2019
1 parent b862e70 commit 872e7d9
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 17 deletions.
10 changes: 1 addition & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,4 @@
## Unreleased

### Added

### Changed

### Deprecated

### Removed
## v0.10.1

### Bug Fixes

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.10.1
# Linux
$ curl -OJL 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 @@ -65,6 +65,8 @@ replace (
// resolve it correctly.
github.com/prometheus/prometheus => github.com/prometheus/prometheus d3245f15022551c6fc8281766ea62db4d71e2747
)
replace github.com/operator-framework/operator-sdk => github.com/operator-framework/operator-sdk v0.10.1
`

func PrintGoMod(asFile bool) 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 @@ -38,8 +38,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 = "v0.10.x" #osdk_branch_annotation
# version = "=v0.10.0" #osdk_version_annotation
# branch = "v0.10.x" #osdk_branch_annotation
version = "=v0.10.1" #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 @@ -66,6 +66,8 @@ replace (
// resolve it correctly.
github.com/prometheus/prometheus => github.com/prometheus/prometheus d3245f15022551c6fc8281766ea62db4d71e2747
)
replace github.com/operator-framework/operator-sdk => github.com/operator-framework/operator-sdk v0.10.1
`

func PrintGoMod(asFile bool) 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 @@ -83,8 +83,8 @@ required = [
[[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 = "v0.10.x" #osdk_branch_annotation
# version = "=v0.10.0" #osdk_version_annotation
# branch = "v0.10.x" #osdk_branch_annotation
version = "=v0.10.1" #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 @@ -69,6 +69,8 @@ replace (
// resolve it correctly.
github.com/prometheus/prometheus => github.com/prometheus/prometheus d3245f15022551c6fc8281766ea62db4d71e2747
)
replace github.com/operator-framework/operator-sdk => github.com/operator-framework/operator-sdk v0.10.1
`

func PrintGoMod(asFile bool) 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 @@ -38,8 +38,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 = "v0.10.x" #osdk_branch_annotation
# version = "=v0.10.0" #osdk_version_annotation
# branch = "v0.10.x" #osdk_branch_annotation
version = "=v0.10.1" #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 @@ -15,7 +15,7 @@
package version

var (
Version = "v0.10.0+git"
Version = "v0.10.1"
GitVersion = "unknown"
GitCommit = "unknown"
)

0 comments on commit 872e7d9

Please sign in to comment.