Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## Unreleased

### Added

### Changed

### Deprecated

### Removed

### Bug Fixes

## v0.16.0

### Added
Expand Down
2 changes: 1 addition & 1 deletion doc/migration/version-upgrade-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -838,7 +838,7 @@ oprator-sdk run exec-entrypoint helm --watches-file=$HOME/watches.yaml

See the [CHANGELOG](https://github.com/operator-framework/operator-sdk/blob/master/CHANGELOG.md#v0151) for details of the release.

## Unreleased
## v0.16.x

### Bug Fixes and Improvements for Metrics

Expand Down
2 changes: 1 addition & 1 deletion internal/scaffold/ansible/go_mod.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const goModTmpl = `module {{ .Repo }}
go 1.13

require (
github.com/operator-framework/operator-sdk v0.16.0
github.com/operator-framework/operator-sdk v0.16.x
sigs.k8s.io/controller-runtime v0.4.0
)

Expand Down
2 changes: 1 addition & 1 deletion internal/scaffold/go_mod.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const goModTmpl = `module {{ .Repo }}
go 1.13

require (
github.com/operator-framework/operator-sdk v0.16.0
github.com/operator-framework/operator-sdk v0.16.x
sigs.k8s.io/controller-runtime v0.4.0
)

Expand Down
2 changes: 1 addition & 1 deletion internal/scaffold/helm/go_mod.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const goModTmpl = `module {{ .Repo }}
go 1.13

require (
github.com/operator-framework/operator-sdk v0.16.0
github.com/operator-framework/operator-sdk v0.16.x
sigs.k8s.io/controller-runtime v0.4.0
)

Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
)

var (
Version = "v0.16.0"
Version = "v0.16.0+git"
GitVersion = "unknown"
GitCommit = "unknown"
GoVersion = fmt.Sprintf("%s %s/%s", runtime.Version(), runtime.GOOS, runtime.GOARCH)
Expand Down