From 8e3c20e730c364f75ddc454acec79e981bb819dd Mon Sep 17 00:00:00 2001 From: Shawn Hurley Date: Thu, 7 Feb 2019 15:44:20 -0500 Subject: [PATCH] *: release v0.4.1 (#1070) --- CHANGELOG.md | 8 +++++++- pkg/scaffold/ansible/gopkgtoml.go | 4 ++-- pkg/scaffold/gopkgtoml.go | 4 ++-- pkg/scaffold/gopkgtoml_test.go | 4 ++-- pkg/scaffold/helm/gopkgtoml.go | 4 ++-- version/version.go | 2 +- 6 files changed, 16 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 046afb7765e..6680473e73a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## Unreleased +## v0.4.1 ### Added @@ -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 diff --git a/pkg/scaffold/ansible/gopkgtoml.go b/pkg/scaffold/ansible/gopkgtoml.go index 194ca4011ac..aa3d7a993c1 100644 --- a/pkg/scaffold/ansible/gopkgtoml.go +++ b/pkg/scaffold/ansible/gopkgtoml.go @@ -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" diff --git a/pkg/scaffold/gopkgtoml.go b/pkg/scaffold/gopkgtoml.go index f93f3527058..da71547c4d3 100644 --- a/pkg/scaffold/gopkgtoml.go +++ b/pkg/scaffold/gopkgtoml.go @@ -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 diff --git a/pkg/scaffold/gopkgtoml_test.go b/pkg/scaffold/gopkgtoml_test.go index b7bf87c17c0..3b407e91fdb 100644 --- a/pkg/scaffold/gopkgtoml_test.go +++ b/pkg/scaffold/gopkgtoml_test.go @@ -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 diff --git a/pkg/scaffold/helm/gopkgtoml.go b/pkg/scaffold/helm/gopkgtoml.go index d20ee71b8bc..7c04b446132 100644 --- a/pkg/scaffold/helm/gopkgtoml.go +++ b/pkg/scaffold/helm/gopkgtoml.go @@ -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" diff --git a/version/version.go b/version/version.go index bb83a5d9d55..2ef05d045a5 100644 --- a/version/version.go +++ b/version/version.go @@ -15,5 +15,5 @@ package version var ( - Version = "v0.4.0+git" + Version = "v0.4.1" )