Skip to content

Commit 78c4724

Browse files
authored
*: release v0.8.0 (#1445)
1 parent 14ac711 commit 78c4724

11 files changed

+16
-12
lines changed

CHANGELOG.md

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

33
### Added
44

doc/user/install-operator-sdk.md

+2-2
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.7.0
9+
RELEASE_VERSION=v0.8.0
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
@@ -53,7 +53,7 @@ Now you should be able to verify the binary.
5353
### Install the release binary in your PATH
5454
5555
```
56-
# Linux
56+
# Linux
5757
$ chmod +x operator-sdk-${RELEASE_VERSION}-x86_64-linux-gnu && sudo cp operator-sdk-${RELEASE_VERSION}-x86_64-linux-gnu /usr/local/bin/operator-sdk && rm operator-sdk-${RELEASE_VERSION}-x86_64-linux-gnu
5858
# macOS
5959
$ chmod +x operator-sdk-${RELEASE_VERSION}-x86_64-apple-darwin && sudo cp operator-sdk-${RELEASE_VERSION}-x86_64-apple-darwin /usr/local/bin/operator-sdk && rm operator-sdk-${RELEASE_VERSION}-x86_64-apple-darwin

internal/pkg/scaffold/ansible/go_mod.go

+1
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.0
112113
)
113114
`
114115

internal/pkg/scaffold/ansible/gopkgtoml.go

+2-2
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 = "master" #osdk_branch_annotation
42-
# version = "=v0.7.0" #osdk_version_annotation
41+
# branch = "master" #osdk_branch_annotation
42+
version = "=v0.8.0" #osdk_version_annotation
4343
4444
[[override]]
4545
name = "k8s.io/api"

internal/pkg/scaffold/go_mod.go

+1
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.0
9293
)
9394
`
9495

internal/pkg/scaffold/go_mod_test.go

+1
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.0
9394
)
9495
`

internal/pkg/scaffold/gopkgtoml.go

+2-2
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 = "master" #osdk_branch_annotation
99-
# version = "=v0.7.0" #osdk_version_annotation
98+
# branch = "master" #osdk_branch_annotation
99+
version = "=v0.8.0" #osdk_version_annotation
100100
101101
[prune]
102102
go-tests = true

internal/pkg/scaffold/gopkgtoml_test.go

+2-2
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 = "master" #osdk_branch_annotation
97-
# version = "=v0.7.0" #osdk_version_annotation
96+
# branch = "master" #osdk_branch_annotation
97+
version = "=v0.8.0" #osdk_version_annotation
9898
9999
[prune]
100100
go-tests = true

internal/pkg/scaffold/helm/go_mod.go

+1
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.0
168169
)
169170
`
170171

internal/pkg/scaffold/helm/gopkgtoml.go

+2-2
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 = "master" #osdk_branch_annotation
42-
# version = "=v0.7.0" #osdk_version_annotation
41+
# branch = "master" #osdk_branch_annotation
42+
version = "=v0.8.0" #osdk_version_annotation
4343
4444
[[override]]
4545
name = "k8s.io/api"

version/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
package version
1616

1717
var (
18-
Version = "v0.7.0+git"
18+
Version = "v0.8.0"
1919
GitVersion = "unknown"
2020
GitCommit = "unknown"
2121
)

0 commit comments

Comments
 (0)