Skip to content

Commit cc5fe88

Browse files
authored
*: release v0.4.0 (#957)
**Description of the change:** Release v0.4.0
1 parent c1dadef commit cc5fe88

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.4.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.3.0" #osdk_version_annotation
38+
# branch = "master" #osdk_branch_annotation
39+
version = "=v0.4.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
@@ -89,8 +89,8 @@ required = [
8989
[[constraint]]
9090
name = "github.com/operator-framework/operator-sdk"
9191
# The version rule is used for a specific release and the master branch for in between releases.
92-
branch = "master" #osdk_branch_annotation
93-
# version = "=v0.3.0" #osdk_version_annotation
92+
# branch = "master" #osdk_branch_annotation
93+
version = "=v0.4.0" #osdk_version_annotation
9494
9595
[prune]
9696
go-tests = true

pkg/scaffold/gopkgtoml_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ required = [
8181
[[constraint]]
8282
name = "github.com/operator-framework/operator-sdk"
8383
# The version rule is used for a specific release and the master branch for in between releases.
84-
branch = "master" #osdk_branch_annotation
85-
# version = "=v0.3.0" #osdk_version_annotation
84+
# branch = "master" #osdk_branch_annotation
85+
version = "=v0.4.0" #osdk_version_annotation
8686
8787
[prune]
8888
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.3.0" #osdk_version_annotation
38+
# branch = "master" #osdk_branch_annotation
39+
version = "=v0.4.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.3.0+git"
18+
Version = "v0.4.0"
1919
)

0 commit comments

Comments
 (0)