Skip to content

Commit 6754b70

Browse files
theishshahAlexNPavel
authored andcommitted
release 0.5.0 (#1078)
*: release v0.5.0
1 parent f5fc3e6 commit 6754b70

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

CHANGELOG.md

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

33
### Added
44

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.4.1" #osdk_version_annotation
38+
# branch = "master" #osdk_branch_annotation
39+
version = "=v0.5.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.4.1" #osdk_version_annotation
105+
# branch = "master" #osdk_branch_annotation
106+
version = "=v0.5.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.4.1" #osdk_version_annotation
97+
# branch = "master" #osdk_branch_annotation
98+
version = "=v0.5.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.4.1" #osdk_version_annotation
38+
# branch = "master" #osdk_branch_annotation
39+
version = "=v0.5.0" #osdk_version_annotation
4040
4141
[[override]]
4242
name = "k8s.io/kubernetes"

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.4.1+git"
18+
Version = "v0.5.0"
1919
)

0 commit comments

Comments
 (0)