Skip to content

Commit 61e0c23

Browse files
authored
v0.6.0 release version (#1214)
<!-- Before making a PR, please read our contributing guidelines https://github.com/operator-framework/operator-sdk/blob/master/CONTRIBUTING.MD Note: Make sure your branch is rebased to the latest upstream master. --> **Description of the change:** Create new release **Motivation for the change:** Create new release <!-- Note: If this PR is fixing an issue make sure to add a note saying: Closes #<ISSUE_NUMBER> -->
1 parent f5d68db commit 61e0c23

File tree

6 files changed

+10
-14
lines changed

6 files changed

+10
-14
lines changed

CHANGELOG.md

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Unreleased
1+
## v0.6.0
22

33
### Added
44

@@ -12,10 +12,6 @@
1212
- CSV manifest are now versioned according to the `operator-registry` [manifest format](https://github.com/operator-framework/operator-registry#manifest-format). See issue [#900](https://github.com/operator-framework/operator-sdk/issues/900) for more details. ([#1016](https://github.com/operator-framework/operator-sdk/pull/1016))
1313
- Unexported `CleanupNoT` function from `pkg/test`, as it is only intended to be used internally ([#1167](https://github.com/operator-framework/operator-sdk/pull/1167))
1414

15-
### Deprecated
16-
17-
### Removed
18-
1915
### Bug Fixes
2016

2117
- Fix issue where running `operator-sdk test local --up-local` would sometimes leave a running process in the background after exit ([#1089](https://github.com/operator-framework/operator-sdk/pull/1020))

pkg/scaffold/ansible/gopkgtoml.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ func (s *GopkgToml) GetInput() (input.Input, error) {
3535
const gopkgTomlTmpl = `[[constraint]]
3636
name = "github.com/operator-framework/operator-sdk"
3737
# The version rule is used for a specific release and the master branch for in between releases.
38-
branch = "master" #osdk_branch_annotation
39-
# version = "=v0.5.0" #osdk_version_annotation
38+
# branch = "master" #osdk_branch_annotation
39+
version = "=v0.6.0" #osdk_version_annotation
4040
4141
[[override]]
4242
name = "k8s.io/api"

pkg/scaffold/gopkgtoml.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@ required = [
102102
[[constraint]]
103103
name = "github.com/operator-framework/operator-sdk"
104104
# The version rule is used for a specific release and the master branch for in between releases.
105-
branch = "master" #osdk_branch_annotation
106-
# version = "=v0.5.0" #osdk_version_annotation
105+
# branch = "master" #osdk_branch_annotation
106+
version = "=v0.6.0" #osdk_version_annotation
107107
108108
[prune]
109109
go-tests = true

pkg/scaffold/gopkgtoml_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ required = [
9494
[[constraint]]
9595
name = "github.com/operator-framework/operator-sdk"
9696
# The version rule is used for a specific release and the master branch for in between releases.
97-
branch = "master" #osdk_branch_annotation
98-
# version = "=v0.5.0" #osdk_version_annotation
97+
# branch = "master" #osdk_branch_annotation
98+
version = "=v0.6.0" #osdk_version_annotation
9999
100100
[prune]
101101
go-tests = true

pkg/scaffold/helm/gopkgtoml.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ func (s *GopkgToml) GetInput() (input.Input, error) {
3535
const gopkgTomlTmpl = `[[constraint]]
3636
name = "github.com/operator-framework/operator-sdk"
3737
# The version rule is used for a specific release and the master branch for in between releases.
38-
branch = "master" #osdk_branch_annotation
39-
# version = "=v0.5.0" #osdk_version_annotation
38+
# branch = "master" #osdk_branch_annotation
39+
version = "=v0.6.0" #osdk_version_annotation
4040
4141
[[override]]
4242
name = "k8s.io/api"

version/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
package version
1616

1717
var (
18-
Version = "v0.5.0+git"
18+
Version = "v0.6.0"
1919
)

0 commit comments

Comments
 (0)