Skip to content

Commit

Permalink
v0.6.0 release version (operator-framework#1214)
Browse files Browse the repository at this point in the history
<!--

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>

-->
  • Loading branch information
theishshah authored Mar 15, 2019
1 parent f5d68db commit 61e0c23
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 14 deletions.
6 changes: 1 addition & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Unreleased
## v0.6.0

### Added

Expand All @@ -12,10 +12,6 @@
- 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))
- 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))

### Deprecated

### Removed

### Bug Fixes

- 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))
Expand Down
4 changes: 2 additions & 2 deletions pkg/scaffold/ansible/gopkgtoml.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,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.5.0" #osdk_version_annotation
# branch = "master" #osdk_branch_annotation
version = "=v0.6.0" #osdk_version_annotation
[[override]]
name = "k8s.io/api"
Expand Down
4 changes: 2 additions & 2 deletions pkg/scaffold/gopkgtoml.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,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 = "master" #osdk_branch_annotation
# version = "=v0.5.0" #osdk_version_annotation
# branch = "master" #osdk_branch_annotation
version = "=v0.6.0" #osdk_version_annotation
[prune]
go-tests = true
Expand Down
4 changes: 2 additions & 2 deletions pkg/scaffold/gopkgtoml_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,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 = "master" #osdk_branch_annotation
# version = "=v0.5.0" #osdk_version_annotation
# branch = "master" #osdk_branch_annotation
version = "=v0.6.0" #osdk_version_annotation
[prune]
go-tests = true
Expand Down
4 changes: 2 additions & 2 deletions pkg/scaffold/helm/gopkgtoml.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,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.5.0" #osdk_version_annotation
# branch = "master" #osdk_branch_annotation
version = "=v0.6.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 @@ -15,5 +15,5 @@
package version

var (
Version = "v0.5.0+git"
Version = "v0.6.0"
)

0 comments on commit 61e0c23

Please sign in to comment.