Skip to content

Commit 24395e1

Browse files
release v0.19.1 (#3584)
## v0.19.1 ### Additions - Added the `--from-version` flag to `generate packagemanifests`. ([#3524](#3524)) ### Bug Fixes - Fixed a bug that caused the Ansible operator not to set the environment variables `ANSIBLE_ROLES_PATH` and `ANSIBLE_COLLECTIONS_PATH` based on the flags `--ansible-roles-path` and `--ansible-collections-path`. ([#3565](#3565))
1 parent 2216e3b commit 24395e1

File tree

9 files changed

+21
-18
lines changed

9 files changed

+21
-18
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## v0.19.1
2+
3+
### Additions
4+
5+
- Added the `--from-version` flag to `generate packagemanifests`. ([#3524](https://github.com/operator-framework/operator-sdk/pull/3524))
6+
7+
### Bug Fixes
8+
9+
- Fixed a bug that caused the Ansible operator not to set the environment variables `ANSIBLE_ROLES_PATH` and `ANSIBLE_COLLECTIONS_PATH` based on the flags `--ansible-roles-path` and `--ansible-collections-path`. ([#3565](https://github.com/operator-framework/operator-sdk/pull/3565))
10+
111
## v0.19.0
212

313
### Additions

changelog/fragments/ansible-operator-env.yaml

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

changelog/fragments/packagemanifests-from-version.yaml

Lines changed: 0 additions & 4 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
@@ -41,7 +41,7 @@ const goModTmpl = `module {{ .Repo }}
4141
go 1.13
4242
4343
require (
44-
github.com/operator-framework/operator-sdk v0.19.x
44+
github.com/operator-framework/operator-sdk v0.19.1
4545
sigs.k8s.io/controller-runtime v0.6.0
4646
)
4747

internal/scaffold/go_mod.go

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

internal/scaffold/helm/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.19.x
44+
github.com/operator-framework/operator-sdk v0.19.1
4545
sigs.k8s.io/controller-runtime v0.6.0
4646
)
4747

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.19.0+git"
24+
Version = "v0.19.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.19.0
25+
$ RELEASE_VERSION=v0.19.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
$ curl -LO https://github.com/operator-framework/operator-sdk/releases/download/${RELEASE_VERSION}/ansible-operator-${RELEASE_VERSION}-x86_64-linux-gnu
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: v0.19.1
3+
weight: 999980999
4+
---
5+
6+
There are no migrations for this release! :tada:

0 commit comments

Comments
 (0)