Skip to content

Commit 33b3bfe

Browse files
authored
*: release v0.8.1 (#1469)
1 parent 5284ed3 commit 33b3bfe

File tree

11 files changed

+15
-19
lines changed

11 files changed

+15
-19
lines changed

CHANGELOG.md

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,4 @@
1-
## Unreleased
2-
3-
### Added
4-
5-
### Changed
6-
7-
### Deprecated
8-
9-
### Removed
1+
## v0.8.1
102

113
### Bug Fixes
124

doc/user/install-operator-sdk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
```sh
88
# Set the release version variable
9-
RELEASE_VERSION=v0.8.0
9+
RELEASE_VERSION=v0.8.1
1010
# Linux
1111
$ curl -OJL https://github.com/operator-framework/operator-sdk/releases/download/${RELEASE_VERSION}/operator-sdk-${RELEASE_VERSION}-x86_64-linux-gnu
1212
# macOS

internal/pkg/scaffold/ansible/go_mod.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ replace (
109109
github.com/coreos/prometheus-operator => github.com/coreos/prometheus-operator v0.29.0
110110
k8s.io/code-generator => k8s.io/code-generator v0.0.0-20181117043124-c2090bec4d9b
111111
k8s.io/kube-openapi => k8s.io/kube-openapi v0.0.0-20180711000925-0cf8f7e6ed1d
112+
github.com/operator-framework/operator-sdk => github.com/operator-framework/operator-sdk v0.8.1
112113
)
113114
`
114115

internal/pkg/scaffold/ansible/gopkgtoml.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ func (s *GopkgToml) GetInput() (input.Input, error) {
3838
const gopkgTomlTmpl = `[[constraint]]
3939
name = "github.com/operator-framework/operator-sdk"
4040
# The version rule is used for a specific release and the master branch for in between releases.
41-
branch = "v0.8.x" #osdk_branch_annotation
42-
# version = "=v0.8.0" #osdk_version_annotation
41+
# branch = "v0.8.x" #osdk_branch_annotation
42+
version = "=v0.8.1" #osdk_version_annotation
4343
4444
[[override]]
4545
name = "k8s.io/api"

internal/pkg/scaffold/go_mod.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ replace (
8989
k8s.io/kube-openapi => k8s.io/kube-openapi v0.0.0-20180711000925-0cf8f7e6ed1d
9090
sigs.k8s.io/controller-runtime => sigs.k8s.io/controller-runtime v0.1.10
9191
sigs.k8s.io/controller-tools => sigs.k8s.io/controller-tools v0.1.11-0.20190411181648-9d55346c2bde
92+
github.com/operator-framework/operator-sdk => github.com/operator-framework/operator-sdk v0.8.1
9293
)
9394
`
9495

internal/pkg/scaffold/go_mod_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,5 +90,6 @@ replace (
9090
k8s.io/kube-openapi => k8s.io/kube-openapi v0.0.0-20180711000925-0cf8f7e6ed1d
9191
sigs.k8s.io/controller-runtime => sigs.k8s.io/controller-runtime v0.1.10
9292
sigs.k8s.io/controller-tools => sigs.k8s.io/controller-tools v0.1.11-0.20190411181648-9d55346c2bde
93+
github.com/operator-framework/operator-sdk => github.com/operator-framework/operator-sdk v0.8.1
9394
)
9495
`

internal/pkg/scaffold/gopkgtoml.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ required = [
9595
[[constraint]]
9696
name = "github.com/operator-framework/operator-sdk"
9797
# The version rule is used for a specific release and the master branch for in between releases.
98-
branch = "v0.8.x" #osdk_branch_annotation
99-
# version = "=v0.8.0" #osdk_version_annotation
98+
# branch = "v0.8.x" #osdk_branch_annotation
99+
version = "=v0.8.1" #osdk_version_annotation
100100
101101
[prune]
102102
go-tests = true

internal/pkg/scaffold/gopkgtoml_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ required = [
9393
[[constraint]]
9494
name = "github.com/operator-framework/operator-sdk"
9595
# The version rule is used for a specific release and the master branch for in between releases.
96-
branch = "v0.8.x" #osdk_branch_annotation
97-
# version = "=v0.8.0" #osdk_version_annotation
96+
# branch = "v0.8.x" #osdk_branch_annotation
97+
version = "=v0.8.1" #osdk_version_annotation
9898
9999
[prune]
100100
go-tests = true

internal/pkg/scaffold/helm/go_mod.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,7 @@ replace (
165165
replace (
166166
k8s.io/code-generator => k8s.io/code-generator v0.0.0-20181117043124-c2090bec4d9b
167167
k8s.io/kube-openapi => k8s.io/kube-openapi v0.0.0-20180711000925-0cf8f7e6ed1d
168+
github.com/operator-framework/operator-sdk => github.com/operator-framework/operator-sdk v0.8.1
168169
)
169170
`
170171

internal/pkg/scaffold/helm/gopkgtoml.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ func (s *GopkgToml) GetInput() (input.Input, error) {
3838
const gopkgTomlTmpl = `[[constraint]]
3939
name = "github.com/operator-framework/operator-sdk"
4040
# The version rule is used for a specific release and the master branch for in between releases.
41-
branch = "v0.8.x" #osdk_branch_annotation
42-
# version = "=v0.8.0" #osdk_version_annotation
41+
# branch = "v0.8.x" #osdk_branch_annotation
42+
version = "=v0.8.1" #osdk_version_annotation
4343
4444
[[override]]
4545
name = "k8s.io/api"

0 commit comments

Comments
 (0)