Skip to content

Commit 724f8d0

Browse files
authored
*: bump to v0.13.0+git (#2315)
* *: bump to v0.13.0+git * hack/generate/gen-test-framework.sh: fix for release branches
1 parent 1af9c95 commit 724f8d0

File tree

6 files changed

+23
-5
lines changed

6 files changed

+23
-5
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## Unreleased
2+
3+
4+
### Added
5+
6+
7+
### Changed
8+
9+
10+
### Deprecated
11+
12+
13+
### Removed
14+
15+
16+
### Bug Fixes
17+
18+
119
## v0.13.0
220

321
### Added

hack/generate/gen-test-framework.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ cd test/test-framework
1313

1414
# Ensure test-framework is up-to-date with current Go project dependencies.
1515
echo "$(../../build/operator-sdk print-deps)" > go.mod
16-
sed -i".bak" -E -e "s|github.com/operator-framework/operator-sdk[[:blank:]]+master||g" go.mod; rm -f go.mod.bak
16+
sed -i".bak" -E -e "/github.com\/operator-framework\/operator-sdk .+/d" go.mod; rm -f go.mod.bak
1717
echo -e "\nreplace github.com/operator-framework/operator-sdk => ../../" >> go.mod
1818
go mod edit -require "github.com/operator-framework/[email protected]"
1919
go build ./...

internal/scaffold/ansible/go_mod.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const goModTmpl = `module {{ .Repo }}
4141
go 1.13
4242
4343
require (
44-
github.com/operator-framework/operator-sdk v0.13.0
44+
github.com/operator-framework/operator-sdk v0.13.x
4545
sigs.k8s.io/controller-runtime v0.4.0
4646
)
4747

internal/scaffold/go_mod.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const goModTmpl = `module {{ .Repo }}
4040
go 1.13
4141
4242
require (
43-
github.com/operator-framework/operator-sdk v0.13.0
43+
github.com/operator-framework/operator-sdk v0.13.x
4444
sigs.k8s.io/controller-runtime v0.4.0
4545
)
4646

internal/scaffold/helm/go_mod.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const goModTmpl = `module {{ .Repo }}
4141
go 1.13
4242
4343
require (
44-
github.com/operator-framework/operator-sdk v0.13.0
44+
github.com/operator-framework/operator-sdk v0.13.x
4545
sigs.k8s.io/controller-runtime v0.4.0
4646
)
4747

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.13.0"
23+
Version = "v0.13.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)