Skip to content

Commit

Permalink
*: release v0.4.1 (#1070)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shawn Hurley authored Feb 7, 2019
1 parent 071e020 commit 8e3c20e
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 10 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Unreleased
## v0.4.1

### Added

Expand All @@ -12,6 +12,12 @@

- Make `up local` subcommand respect `KUBECONFIG` env var ([#996](https://github.com/operator-framework/operator-sdk/pull/996))
- Make `up local` subcommand use default namespace set in kubeconfig instead of hardcoded `default` and also add ability to watch all namespaces for ansible and helm type operators ([#996](https://github.com/operator-framework/operator-sdk/pull/996))
- Added k8s_status modules back to generation ([#972](https://github.com/operator-framework/operator-sdk/pull/972))
- Update checks for gvk registration to cover all cases for ansible ([#973](https://github.com/operator-framework/operator-sdk/pull/973) & [#1019](https://github.com/operator-framework/operator-sdk/pull/1019))
- Update reconciler for ansible and helm to use the cache rather than the API client. ([#1022](https://github.com/operator-framework/operator-sdk/pull/1022) & [#1048](https://github.com/operator-framework/operator-sdk/pull/1048) & [#1054](https://github.com/operator-framework/operator-sdk/pull/1054))
- Update reconciler to will update the status everytime for ansible ([#1066](https://github.com/operator-framework/operator-sdk/pull/1066))
- Update ansible proxy to recover dependent watches when pod is killed ([#1067](https://github.com/operator-framework/operator-sdk/pull/1067))
- Update ansible proxy to handle watching cluster scoped dependent watches ([#1031](https://github.com/operator-framework/operator-sdk/pull/1031))

## v0.4.0

Expand Down
4 changes: 2 additions & 2 deletions pkg/scaffold/ansible/gopkgtoml.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ func (s *GopkgToml) GetInput() (input.Input, error) {
const gopkgTomlTmpl = `[[constraint]]
name = "github.com/operator-framework/operator-sdk"
# The version rule is used for a specific release and the master branch for in between releases.
branch = "v0.4.x" #osdk_branch_annotation
# version = "=v0.4.0" #osdk_version_annotation
# branch = "v0.4.x" #osdk_branch_annotation
version = "=v0.4.1" #osdk_version_annotation
[[override]]
name = "k8s.io/api"
Expand Down
4 changes: 2 additions & 2 deletions pkg/scaffold/gopkgtoml.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ required = [
[[constraint]]
name = "github.com/operator-framework/operator-sdk"
# The version rule is used for a specific release and the master branch for in between releases.
branch = "v0.4.x" #osdk_branch_annotation
# version = "=v0.4.0" #osdk_version_annotation
# branch = "v0.4.x" #osdk_branch_annotation
version = "=v0.4.1" #osdk_version_annotation
[prune]
go-tests = true
Expand Down
4 changes: 2 additions & 2 deletions pkg/scaffold/gopkgtoml_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ required = [
[[constraint]]
name = "github.com/operator-framework/operator-sdk"
# The version rule is used for a specific release and the master branch for in between releases.
branch = "v0.4.x" #osdk_branch_annotation
# version = "=v0.4.0" #osdk_version_annotation
# branch = "v0.4.x" #osdk_branch_annotation
version = "=v0.4.1" #osdk_version_annotation
[prune]
go-tests = true
Expand Down
4 changes: 2 additions & 2 deletions pkg/scaffold/helm/gopkgtoml.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ func (s *GopkgToml) GetInput() (input.Input, error) {
const gopkgTomlTmpl = `[[constraint]]
name = "github.com/operator-framework/operator-sdk"
# The version rule is used for a specific release and the master branch for in between releases.
branch = "v0.4.x" #osdk_branch_annotation
# version = "=v0.4.0" #osdk_version_annotation
# branch = "v0.4.x" #osdk_branch_annotation
version = "=v0.4.1" #osdk_version_annotation
[[override]]
name = "k8s.io/kubernetes"
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@
package version

var (
Version = "v0.4.0+git"
Version = "v0.4.1"
)

0 comments on commit 8e3c20e

Please sign in to comment.