Skip to content

Commit 7bf7b68

Browse files
authored
*: release v0.18.1 (#3179)
* Update CHANGELOG.md * bump versions
1 parent 61b325d commit 7bf7b68

File tree

9 files changed

+18
-14
lines changed

9 files changed

+18
-14
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## v0.18.1
2+
3+
### Bug Fixes
4+
5+
- fix leader election of follower showing that an old leader will be evicted when the current leader is healthy. ([#3164](https://github.com/operator-framework/operator-sdk/pull/3164))
6+
- bump api validation library to 431198de9fc2cf82f369efb5c4a90a9cc079a1c3 to fix "CRD key not found" validation bug. ([#3167](https://github.com/operator-framework/operator-sdk/pull/3167))
7+
18
## v0.18.0
29

310
### Additions

changelog/fragments/3059-fixleader-election-message.yaml

Lines changed: 0 additions & 4 deletions
This file was deleted.

changelog/fragments/validation-bug-bump-api.yaml

Lines changed: 0 additions & 5 deletions
This file was deleted.

internal/scaffold/ansible/go_mod.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const goModTmpl = `module {{ .Repo }}
4242
go 1.13
4343
4444
require (
45-
github.com/operator-framework/operator-sdk v0.18.x
45+
github.com/operator-framework/operator-sdk v0.18.1
4646
sigs.k8s.io/controller-runtime v0.6.0
4747
)
4848

internal/scaffold/go_mod.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const goModTmpl = `module {{ .Repo }}
4141
go 1.13
4242
4343
require (
44-
github.com/operator-framework/operator-sdk v0.18.x
44+
github.com/operator-framework/operator-sdk v0.18.1
4545
sigs.k8s.io/controller-runtime v0.6.0
4646
)
4747

internal/scaffold/helm/go_mod.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const goModTmpl = `module {{ .Repo }}
4242
go 1.13
4343
4444
require (
45-
github.com/operator-framework/operator-sdk v0.18.x
45+
github.com/operator-framework/operator-sdk v0.18.1
4646
sigs.k8s.io/controller-runtime v0.6.0
4747
)
4848

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121

2222
//var needs to be used instead of const for ldflags
2323
var (
24-
Version = "v0.18.0+git"
24+
Version = "v0.18.1"
2525
GitVersion = "unknown"
2626
GitCommit = "unknown"
2727
KubernetesVersion = "unknown"

website/content/en/docs/install-operator-sdk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ $ brew install operator-sdk
2222

2323
```sh
2424
# Set the release version variable
25-
$ RELEASE_VERSION=v0.18.0
25+
$ RELEASE_VERSION=v0.18.1
2626
# Linux
2727
$ curl -LO https://github.com/operator-framework/operator-sdk/releases/download/${RELEASE_VERSION}/operator-sdk-${RELEASE_VERSION}-x86_64-linux-gnu
2828
# macOS
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: v0.18.1
3+
weight: 999981999
4+
---
5+
6+
There are no migrations for this release! :tada:

0 commit comments

Comments
 (0)