Skip to content

Commit

Permalink
path release v0.15.2 (#2536)
Browse files Browse the repository at this point in the history
  • Loading branch information
camilamacedo86 authored Feb 13, 2020
1 parent 63a8002 commit ffaf278
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 12 deletions.
8 changes: 1 addition & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,8 @@
## Unreleased

### Added
## v0.15.2

### Changed
- Operator user setup and entrypoint scripts no longer insert dynamic runtime user entries into `/etc/passwd`. To use dynamic runtime users, use a container runtime that supports it (e.g. CRI-O). ([#2469](https://github.com/operator-framework/operator-sdk/pull/2469))

### Deprecated

### Removed

### Bug Fixes

- Fixed a regression in the `operator-sdk run` command that caused `--local` flags to be ignored ([#2478](https://github.com/operator-framework/operator-sdk/issues/2478))
Expand Down
2 changes: 1 addition & 1 deletion doc/user/install-operator-sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ $ brew install operator-sdk

```sh
# Set the release version variable
$ RELEASE_VERSION=v0.15.1
$ RELEASE_VERSION=v0.15.2
# Linux
$ curl -LO https://github.com/operator-framework/operator-sdk/releases/download/${RELEASE_VERSION}/operator-sdk-${RELEASE_VERSION}-x86_64-linux-gnu
# macOS
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 @@ -41,7 +41,7 @@ const goModTmpl = `module {{ .Repo }}
go 1.13
require (
github.com/operator-framework/operator-sdk v0.15.x
github.com/operator-framework/operator-sdk v0.15.2
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 @@ -40,7 +40,7 @@ const goModTmpl = `module {{ .Repo }}
go 1.13
require (
github.com/operator-framework/operator-sdk v0.15.x
github.com/operator-framework/operator-sdk v0.15.2
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 @@ -41,7 +41,7 @@ const goModTmpl = `module {{ .Repo }}
go 1.13
require (
github.com/operator-framework/operator-sdk v0.15.x
github.com/operator-framework/operator-sdk v0.15.2
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.15.1+git"
Version = "v0.15.2"
GitVersion = "unknown"
GitCommit = "unknown"
GoVersion = fmt.Sprintf("%s %s/%s", runtime.Version(), runtime.GOOS, runtime.GOARCH)
Expand Down

0 comments on commit ffaf278

Please sign in to comment.