Skip to content

Commit cd9a38e

Browse files
authored
CHANGELOG,version,scaffold: post-release version bump (#1295)
1 parent 7e07b20 commit cd9a38e

File tree

6 files changed

+21
-13
lines changed

6 files changed

+21
-13
lines changed

CHANGELOG.md

+12-4
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.7.0
214

315
### Added
@@ -12,10 +24,6 @@
1224
- Subcommands of [`operator-sdk generate`](https://github.com/operator-framework/operator-sdk/blob/master/doc/sdk-cli-reference.md#generate) are now verbose by default. ([#1271](https://github.com/operator-framework/operator-sdk/pull/1271))
1325
- [`operator-sdk olm-catalog gen-csv`](https://github.com/operator-framework/operator-sdk/blob/master/doc/sdk-cli-reference.md#gen-csv) parses Custom Resource manifests from `deploy/crds` or a custom path specified in `csv-config.yaml`, encodes them in a JSON array, and sets the CSV's [`metadata.annotations.alm-examples`](https://github.com/operator-framework/operator-lifecycle-manager/blob/master/Documentation/design/building-your-csv.md#crd-templates) field to that JSON. ([#1116](https://github.com/operator-framework/operator-sdk/pull/1116))
1426

15-
### Deprecated
16-
17-
### Removed
18-
1927
### Bug Fixes
2028

2129
- Fixed an issue that caused `operator-sdk new --type=helm` to fail for charts that have template files in nested template directories. ([#1235](https://github.com/operator-framework/operator-sdk/pull/1235))

internal/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.7.0" #osdk_version_annotation
38+
branch = "master" #osdk_branch_annotation
39+
# version = "=v0.7.0" #osdk_version_annotation
4040
4141
[[override]]
4242
name = "k8s.io/api"

internal/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.7.0" #osdk_version_annotation
105+
branch = "master" #osdk_branch_annotation
106+
# version = "=v0.7.0" #osdk_version_annotation
107107
108108
[prune]
109109
go-tests = true

internal/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.7.0" #osdk_version_annotation
97+
branch = "master" #osdk_branch_annotation
98+
# version = "=v0.7.0" #osdk_version_annotation
9999
100100
[prune]
101101
go-tests = true

internal/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.7.0" #osdk_version_annotation
38+
branch = "master" #osdk_branch_annotation
39+
# version = "=v0.7.0" #osdk_version_annotation
4040
4141
[[override]]
4242
name = "k8s.io/api"

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

0 commit comments

Comments
 (0)