Skip to content

Commit 28bd2b0

Browse files
author
Eric Stroczynski
authored
*: release v0.8.2 (#1717)
1 parent 8754b98 commit 28bd2b0

File tree

11 files changed

+19
-19
lines changed

11 files changed

+19
-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.2
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.1
9+
RELEASE_VERSION=v0.8.2
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: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,8 @@ replace (
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
112112
)
113+
114+
replace github.com/operator-framework/operator-sdk => github.com/operator-framework/operator-sdk v0.8.2
113115
`
114116

115117
func PrintGoMod(asFile bool) error {

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.1" #osdk_version_annotation
41+
# branch = "v0.8.x" #osdk_branch_annotation
42+
version = "=v0.8.2" #osdk_version_annotation
4343
4444
[[override]]
4545
name = "k8s.io/api"

internal/pkg/scaffold/go_mod.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,8 @@ replace (
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
9292
)
93+
94+
replace github.com/operator-framework/operator-sdk => github.com/operator-framework/operator-sdk v0.8.2
9395
`
9496

9597
func PrintGoMod(asFile bool) error {

internal/pkg/scaffold/go_mod_test.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,4 +91,6 @@ replace (
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
9393
)
94+
95+
replace github.com/operator-framework/operator-sdk => github.com/operator-framework/operator-sdk v0.8.2
9496
`

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.1" #osdk_version_annotation
98+
# branch = "v0.8.x" #osdk_branch_annotation
99+
version = "=v0.8.2" #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.1" #osdk_version_annotation
96+
# branch = "v0.8.x" #osdk_branch_annotation
97+
version = "=v0.8.2" #osdk_version_annotation
9898
9999
[prune]
100100
go-tests = true

internal/pkg/scaffold/helm/go_mod.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,8 @@ 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
168168
)
169+
170+
replace github.com/operator-framework/operator-sdk => github.com/operator-framework/operator-sdk v0.8.2
169171
`
170172

171173
func PrintGoMod(asFile bool) error {

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.1" #osdk_version_annotation
41+
# branch = "v0.8.x" #osdk_branch_annotation
42+
version = "=v0.8.2" #osdk_version_annotation
4343
4444
[[override]]
4545
name = "k8s.io/api"

0 commit comments

Comments
 (0)