Skip to content

Commit d654160

Browse files
authored
version,pkg/scaffold,changelog: update to v0.2.1 (#833)
1 parent 1a5768c commit d654160

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## v0.2.1
2+
3+
### Bug Fixes
4+
5+
- Pin controller-runtime version to v0.1.4 to fix dependency issues and pin ansible idna package to version 2.7 ([#831](https://github.com/operator-framework/operator-sdk/pull/831))
6+
17
## v0.2.0
28

39
### Changed

pkg/scaffold/gopkgtoml.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ required = [
8686
name = "github.com/operator-framework/operator-sdk"
8787
# The version rule is used for a specific release and the master branch for in between releases.
8888
# branch = "v0.2.x" #osdk_branch_annotation
89-
version = "=v0.2.0" #osdk_version_annotation
89+
version = "=v0.2.1" #osdk_version_annotation
9090
9191
[prune]
9292
go-tests = true

pkg/scaffold/gopkgtoml_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ required = [
7878
name = "github.com/operator-framework/operator-sdk"
7979
# The version rule is used for a specific release and the master branch for in between releases.
8080
# branch = "v0.2.x" #osdk_branch_annotation
81-
version = "=v0.2.0" #osdk_version_annotation
81+
version = "=v0.2.1" #osdk_version_annotation
8282
8383
[prune]
8484
go-tests = true

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.2.0"
18+
Version = "v0.2.1"
1919
)

0 commit comments

Comments
 (0)