Skip to content

Commit ff80b17

Browse files
authored
*: release v0.10.0 (#1800)
* *: release v0.10.0 * release.sh: fix install guide check * CHANGELOG.md: removed empty sections
1 parent ae7fab6 commit ff80b17

File tree

10 files changed

+16
-14
lines changed

10 files changed

+16
-14
lines changed

CHANGELOG.md

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

33
### Added
44

@@ -10,10 +10,6 @@
1010
- **Breaking change:** CSV config field `role-path` is now `role-paths` and takes a list of strings. Users can now specify multiple `Role` and `ClusterRole` manifests using `role-paths`. ([#1704](https://github.com/operator-framework/operator-sdk/pull/1704))
1111
- Make `ready` package idempotent. Now, a user can call `Set()` or `Unset()` to set the operator's readiness without knowing the current state. ([#1761](https://github.com/operator-framework/operator-sdk/pull/1761))
1212

13-
### Deprecated
14-
15-
### Removed
16-
1713
### Bug Fixes
1814

1915
- Check if `metadata.annotations['alm-examples']` is non-empty before creating contained CR manifests in the scorecard. ([#1789](https://github.com/operator-framework/operator-sdk/pull/1789))

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.9.0
21+
$ RELEASE_VERSION=v0.10.0
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.0
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 = "master" #osdk_branch_annotation
42-
# version = "=v0.9.0" #osdk_version_annotation
41+
# branch = "master" #osdk_branch_annotation
42+
version = "=v0.10.0" #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.0
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 = "master" #osdk_branch_annotation
87-
# version = "=v0.9.0" #osdk_version_annotation
86+
# branch = "master" #osdk_branch_annotation
87+
version = "=v0.10.0" #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.0
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 = "master" #osdk_branch_annotation
42-
# version = "=v0.9.0" #osdk_version_annotation
41+
# branch = "master" #osdk_branch_annotation
42+
version = "=v0.10.0" #osdk_version_annotation
4343
4444
[[override]]
4545
name = "k8s.io/api"

release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ if [[ "$VER" != "$CURR_VER_HELM_DEP" ]]; then
7777
exit 1
7878
fi
7979

80-
CURR_VER_INSTALL_GUIDE_FILE="$(sed -nr 's/RELEASE_VERSION=(.+)/\1/p' "$INSTALL_GUIDE_FILE" | tr -d ' \t\n')"
80+
CURR_VER_INSTALL_GUIDE_FILE="$(sed -nr 's/.*RELEASE_VERSION=(.+)/\1/p' "$INSTALL_GUIDE_FILE" | tr -d ' \t\n')"
8181
if [[ "$VER" != "$CURR_VER_INSTALL_GUIDE_FILE" ]]; then
8282
echo "version '$VER' is not set correctly in $INSTALL_GUIDE_FILE"
8383
exit 1

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.9.0+git"
18+
Version = "v0.10.0"
1919
GitVersion = "unknown"
2020
GitCommit = "unknown"
2121
)

0 commit comments

Comments
 (0)