Skip to content

Commit

Permalink
CHANGELOG,version,scaffold: release v0.7.0 (operator-framework#1294)
Browse files Browse the repository at this point in the history
**Description of the change:** Set version to v0.7.0


**Motivation for the change:** Make new release
  • Loading branch information
AlexNPavel authored Apr 5, 2019
1 parent 82ae48c commit 7e07b20
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Unreleased
## v0.7.0

### Added

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 @@ -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.6.0" #osdk_version_annotation
# branch = "master" #osdk_branch_annotation
version = "=v0.7.0" #osdk_version_annotation
[[override]]
name = "k8s.io/api"
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 @@ -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.6.0" #osdk_version_annotation
# branch = "master" #osdk_branch_annotation
version = "=v0.7.0" #osdk_version_annotation
[prune]
go-tests = true
Expand Down
4 changes: 2 additions & 2 deletions internal/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.6.0" #osdk_version_annotation
# branch = "master" #osdk_branch_annotation
version = "=v0.7.0" #osdk_version_annotation
[prune]
go-tests = true
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 @@ -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.6.0" #osdk_version_annotation
# branch = "master" #osdk_branch_annotation
version = "=v0.7.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.6.0+git"
Version = "v0.7.0"
)

0 comments on commit 7e07b20

Please sign in to comment.