Skip to content

Commit 872e7d9

Browse files
author
Ish Shah
authored
*: release v0.10.1 (#2038)
* cherry picked commit * backport second bug fix * revert previous backport * update versions
1 parent b862e70 commit 872e7d9

File tree

9 files changed

+15
-17
lines changed

9 files changed

+15
-17
lines changed

CHANGELOG.md

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,4 @@
1-
## Unreleased
2-
3-
### Added
4-
5-
### Changed
6-
7-
### Deprecated
8-
9-
### Removed
1+
## v0.10.1
102

113
### Bug Fixes
124

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.10.0
21+
$ RELEASE_VERSION=v0.10.1
2222
# Linux
2323
$ curl -OJL https://github.com/operator-framework/operator-sdk/releases/download/${RELEASE_VERSION}/operator-sdk-${RELEASE_VERSION}-x86_64-linux-gnu
2424
# macOS

internal/pkg/scaffold/ansible/go_mod.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ replace (
6565
// resolve it correctly.
6666
github.com/prometheus/prometheus => github.com/prometheus/prometheus d3245f15022551c6fc8281766ea62db4d71e2747
6767
)
68+
69+
replace github.com/operator-framework/operator-sdk => github.com/operator-framework/operator-sdk v0.10.1
6870
`
6971

7072
func PrintGoMod(asFile bool) error {

internal/pkg/scaffold/ansible/gopkgtoml.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ func (s *GopkgToml) GetInput() (input.Input, error) {
3838
const gopkgTomlTmpl = `[[constraint]]
3939
name = "github.com/operator-framework/operator-sdk"
4040
# The version rule is used for a specific release and the master branch for in between releases.
41-
branch = "v0.10.x" #osdk_branch_annotation
42-
# version = "=v0.10.0" #osdk_version_annotation
41+
# branch = "v0.10.x" #osdk_branch_annotation
42+
version = "=v0.10.1" #osdk_version_annotation
4343
4444
[[override]]
4545
name = "k8s.io/api"

internal/pkg/scaffold/go_mod.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ replace (
6666
// resolve it correctly.
6767
github.com/prometheus/prometheus => github.com/prometheus/prometheus d3245f15022551c6fc8281766ea62db4d71e2747
6868
)
69+
70+
replace github.com/operator-framework/operator-sdk => github.com/operator-framework/operator-sdk v0.10.1
6971
`
7072

7173
func PrintGoMod(asFile bool) error {

internal/pkg/scaffold/gopkgtoml.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ required = [
8383
[[constraint]]
8484
name = "github.com/operator-framework/operator-sdk"
8585
# The version rule is used for a specific release and the master branch for in between releases.
86-
branch = "v0.10.x" #osdk_branch_annotation
87-
# version = "=v0.10.0" #osdk_version_annotation
86+
# branch = "v0.10.x" #osdk_branch_annotation
87+
version = "=v0.10.1" #osdk_version_annotation
8888
8989
[prune]
9090
go-tests = true

internal/pkg/scaffold/helm/go_mod.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,8 @@ replace (
6969
// resolve it correctly.
7070
github.com/prometheus/prometheus => github.com/prometheus/prometheus d3245f15022551c6fc8281766ea62db4d71e2747
7171
)
72+
73+
replace github.com/operator-framework/operator-sdk => github.com/operator-framework/operator-sdk v0.10.1
7274
`
7375

7476
func PrintGoMod(asFile bool) error {

internal/pkg/scaffold/helm/gopkgtoml.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ func (s *GopkgToml) GetInput() (input.Input, error) {
3838
const gopkgTomlTmpl = `[[constraint]]
3939
name = "github.com/operator-framework/operator-sdk"
4040
# The version rule is used for a specific release and the master branch for in between releases.
41-
branch = "v0.10.x" #osdk_branch_annotation
42-
# version = "=v0.10.0" #osdk_version_annotation
41+
# branch = "v0.10.x" #osdk_branch_annotation
42+
version = "=v0.10.1" #osdk_version_annotation
4343
4444
[[override]]
4545
name = "k8s.io/api"

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
package version
1616

1717
var (
18-
Version = "v0.10.0+git"
18+
Version = "v0.10.1"
1919
GitVersion = "unknown"
2020
GitCommit = "unknown"
2121
)

0 commit comments

Comments
 (0)