Skip to content

Commit e03dff8

Browse files
authored
pkg,version,CHANGELOG: bump to v0.4.1+git (#1073)
**Description of the change:** Change master version to v0.4.1+git and sync changelog **Motivation for the change:** v0.4.1 released
1 parent 220e1ed commit e03dff8

File tree

6 files changed

+17
-7
lines changed

6 files changed

+17
-7
lines changed

CHANGELOG.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,18 @@
2020

2121
### Bug Fixes
2222

23-
- Make `up local` subcommand respect `KUBECONFIG` env var ([#983](https://github.com/operator-framework/operator-sdk/pull/983))
24-
- 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 ([#983](https://github.com/operator-framework/operator-sdk/pull/983))
23+
## v0.4.1
24+
25+
### Bug Fixes
26+
27+
- Make `up local` subcommand respect `KUBECONFIG` env var ([#996](https://github.com/operator-framework/operator-sdk/pull/996))
28+
- 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))
29+
- Added k8s_status modules back to generation ([#972](https://github.com/operator-framework/operator-sdk/pull/972))
30+
- 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))
31+
- 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))
32+
- Update reconciler to will update the status everytime for ansible ([#1066](https://github.com/operator-framework/operator-sdk/pull/1066))
33+
- Update ansible proxy to recover dependent watches when pod is killed ([#1067](https://github.com/operator-framework/operator-sdk/pull/1067))
34+
- Update ansible proxy to handle watching cluster scoped dependent watches ([#1031](https://github.com/operator-framework/operator-sdk/pull/1031))
2535

2636
## v0.4.0
2737

pkg/scaffold/ansible/gopkgtoml.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ 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.
3838
branch = "master" #osdk_branch_annotation
39-
# version = "=v0.4.0" #osdk_version_annotation
39+
# version = "=v0.4.1" #osdk_version_annotation
4040
4141
[[override]]
4242
name = "k8s.io/api"

pkg/scaffold/gopkgtoml.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ required = [
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.
105105
branch = "master" #osdk_branch_annotation
106-
# version = "=v0.4.0" #osdk_version_annotation
106+
# version = "=v0.4.1" #osdk_version_annotation
107107
108108
[prune]
109109
go-tests = true

pkg/scaffold/gopkgtoml_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ required = [
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.
9797
branch = "master" #osdk_branch_annotation
98-
# version = "=v0.4.0" #osdk_version_annotation
98+
# version = "=v0.4.1" #osdk_version_annotation
9999
100100
[prune]
101101
go-tests = true

pkg/scaffold/helm/gopkgtoml.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ 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.
3838
branch = "master" #osdk_branch_annotation
39-
# version = "=v0.4.0" #osdk_version_annotation
39+
# version = "=v0.4.1" #osdk_version_annotation
4040
4141
[[override]]
4242
name = "k8s.io/kubernetes"

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
package version
1616

1717
var (
18-
Version = "v0.4.0+git"
18+
Version = "v0.4.1+git"
1919
)

0 commit comments

Comments
 (0)