Skip to content

Commit 8ecad41

Browse files
authored
*: bump to v0.11.0+git for master (#2052)
1 parent 39c65c3 commit 8ecad41

File tree

8 files changed

+19
-13
lines changed

8 files changed

+19
-13
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## Unreleased
2+
3+
### Added
4+
5+
### Changed
6+
7+
### Deprecated
8+
9+
### Removed
10+
11+
### Bug Fixes
12+
113
## v0.11.0
214

315
### Added

internal/pkg/scaffold/ansible/go_mod.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,6 @@ replace (
6666
// resolve it correctly.
6767
github.com/prometheus/prometheus => github.com/prometheus/prometheus d20e84d0fb64aff2f62a977adc8cfb656da4e286
6868
)
69-
70-
replace github.com/operator-framework/operator-sdk => github.com/operator-framework/operator-sdk v0.11.0
7169
`
7270

7371
func PrintGoMod() error {

internal/pkg/scaffold/ansible/gopkgtoml.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ func (s *GopkgToml) GetInput() (input.Input, error) {
3737
const gopkgTomlTmpl = `[[constraint]]
3838
name = "github.com/operator-framework/operator-sdk"
3939
# The version rule is used for a specific release and the master branch for in between releases.
40-
# branch = "master" #osdk_branch_annotation
41-
version = "=v0.11.0" #osdk_version_annotation
40+
branch = "master" #osdk_branch_annotation
41+
# version = "=v0.11.0" #osdk_version_annotation
4242
4343
[[override]]
4444
name = "k8s.io/api"

internal/pkg/scaffold/go_mod.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,6 @@ replace (
6565
// resolve it correctly.
6666
github.com/prometheus/prometheus => github.com/prometheus/prometheus d20e84d0fb64aff2f62a977adc8cfb656da4e286
6767
)
68-
69-
replace github.com/operator-framework/operator-sdk => github.com/operator-framework/operator-sdk v0.11.0
7068
`
7169

7270
func PrintGoMod() error {

internal/pkg/scaffold/gopkgtoml.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ const gopkgTomlTmpl = `[[override]]
7474
[[constraint]]
7575
name = "github.com/operator-framework/operator-sdk"
7676
# The version rule is used for a specific release and the master branch for in between releases.
77-
# branch = "master" #osdk_branch_annotation
78-
version = "=v0.11.0" #osdk_version_annotation
77+
branch = "master" #osdk_branch_annotation
78+
# version = "=v0.11.0" #osdk_version_annotation
7979
8080
[prune]
8181
go-tests = true

internal/pkg/scaffold/helm/go_mod.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,6 @@ replace (
8787
// resolve it correctly.
8888
github.com/prometheus/prometheus => github.com/prometheus/prometheus d20e84d0fb64aff2f62a977adc8cfb656da4e286
8989
)
90-
91-
replace github.com/operator-framework/operator-sdk => github.com/operator-framework/operator-sdk v0.11.0
9290
`
9391

9492
func PrintGoMod() error {

internal/pkg/scaffold/helm/gopkgtoml.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ func (s *GopkgToml) GetInput() (input.Input, error) {
3737
const gopkgTomlTmpl = `[[constraint]]
3838
name = "github.com/operator-framework/operator-sdk"
3939
# The version rule is used for a specific release and the master branch for in between releases.
40-
# branch = "master" #osdk_branch_annotation
41-
version = "=v0.11.0" #osdk_version_annotation
40+
branch = "master" #osdk_branch_annotation
41+
# version = "=v0.11.0" #osdk_version_annotation
4242
4343
[[override]]
4444
name = "k8s.io/api"

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
)
2121

2222
var (
23-
Version = "v0.11.0"
23+
Version = "v0.11.0+git"
2424
GitVersion = "unknown"
2525
GitCommit = "unknown"
2626
GoVersion = fmt.Sprintf("%s %s/%s", runtime.Version(), runtime.GOOS, runtime.GOARCH)

0 commit comments

Comments
 (0)