Skip to content

Commit 8e3c20e

Browse files
author
Shawn Hurley
authored
*: release v0.4.1 (#1070)
1 parent 071e020 commit 8e3c20e

File tree

6 files changed

+16
-10
lines changed

6 files changed

+16
-10
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Unreleased
1+
## v0.4.1
22

33
### Added
44

@@ -12,6 +12,12 @@
1212

1313
- Make `up local` subcommand respect `KUBECONFIG` env var ([#996](https://github.com/operator-framework/operator-sdk/pull/996))
1414
- 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))
15+
- Added k8s_status modules back to generation ([#972](https://github.com/operator-framework/operator-sdk/pull/972))
16+
- 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))
17+
- 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))
18+
- Update reconciler to will update the status everytime for ansible ([#1066](https://github.com/operator-framework/operator-sdk/pull/1066))
19+
- Update ansible proxy to recover dependent watches when pod is killed ([#1067](https://github.com/operator-framework/operator-sdk/pull/1067))
20+
- Update ansible proxy to handle watching cluster scoped dependent watches ([#1031](https://github.com/operator-framework/operator-sdk/pull/1031))
1521

1622
## v0.4.0
1723

pkg/scaffold/ansible/gopkgtoml.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ func (s *GopkgToml) GetInput() (input.Input, error) {
3535
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.
38-
branch = "v0.4.x" #osdk_branch_annotation
39-
# version = "=v0.4.0" #osdk_version_annotation
38+
# branch = "v0.4.x" #osdk_branch_annotation
39+
version = "=v0.4.1" #osdk_version_annotation
4040
4141
[[override]]
4242
name = "k8s.io/api"

pkg/scaffold/gopkgtoml.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ required = [
8989
[[constraint]]
9090
name = "github.com/operator-framework/operator-sdk"
9191
# The version rule is used for a specific release and the master branch for in between releases.
92-
branch = "v0.4.x" #osdk_branch_annotation
93-
# version = "=v0.4.0" #osdk_version_annotation
92+
# branch = "v0.4.x" #osdk_branch_annotation
93+
version = "=v0.4.1" #osdk_version_annotation
9494
9595
[prune]
9696
go-tests = true

pkg/scaffold/gopkgtoml_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ required = [
8181
[[constraint]]
8282
name = "github.com/operator-framework/operator-sdk"
8383
# The version rule is used for a specific release and the master branch for in between releases.
84-
branch = "v0.4.x" #osdk_branch_annotation
85-
# version = "=v0.4.0" #osdk_version_annotation
84+
# branch = "v0.4.x" #osdk_branch_annotation
85+
version = "=v0.4.1" #osdk_version_annotation
8686
8787
[prune]
8888
go-tests = true

pkg/scaffold/helm/gopkgtoml.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ func (s *GopkgToml) GetInput() (input.Input, error) {
3535
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.
38-
branch = "v0.4.x" #osdk_branch_annotation
39-
# version = "=v0.4.0" #osdk_version_annotation
38+
# branch = "v0.4.x" #osdk_branch_annotation
39+
version = "=v0.4.1" #osdk_version_annotation
4040
4141
[[override]]
4242
name = "k8s.io/kubernetes"

version/version.go

+1-1
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"
1919
)

0 commit comments

Comments
 (0)