Skip to content

Commit 0258db0

Browse files
author
Eric Stroczynski
authored
*: release v0.17.2 (#3292)
1 parent 0aa5e6d commit 0258db0

File tree

8 files changed

+17
-11
lines changed

8 files changed

+17
-11
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## v0.17.2
2+
3+
### Bug Fixes
4+
5+
- Fix the download URL for the `tini` binary on ARM64 for the ansible operator base image. ([#3291](https://github.com/operator-framework/operator-sdk/pull/3291))
6+
17
## v0.17.1
28

39
### Changes

changelog/fragments/3234-arm64-tini-url.yaml

-6
This file was deleted.

internal/scaffold/ansible/go_mod.go

+1-1
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.17.x
45+
github.com/operator-framework/operator-sdk v0.17.2
4646
sigs.k8s.io/controller-runtime v0.5.2
4747
)
4848

internal/scaffold/go_mod.go

+1-1
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.17.x
44+
github.com/operator-framework/operator-sdk v0.17.2
4545
sigs.k8s.io/controller-runtime v0.5.2
4646
)
4747

internal/scaffold/helm/go_mod.go

+1-1
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.17.x
45+
github.com/operator-framework/operator-sdk v0.17.2
4646
sigs.k8s.io/controller-runtime v0.5.2
4747
)
4848

version/version.go

+1-1
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.17.1+git"
24+
Version = "v0.17.2"
2525
GitVersion = "unknown"
2626
GitCommit = "unknown"
2727
KubernetesVersion = "unknown"

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ $ brew install operator-sdk
2727

2828
```sh
2929
# Set the release version variable
30-
$ RELEASE_VERSION=v0.17.1
30+
$ RELEASE_VERSION=v0.17.2
3131
# Linux
3232
$ curl -LO https://github.com/operator-framework/operator-sdk/releases/download/${RELEASE_VERSION}/operator-sdk-${RELEASE_VERSION}-x86_64-linux-gnu
3333
# macOS
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: v0.17.2
3+
weight: 999982998
4+
---
5+
6+
There are no migrations for this release! :tada:

0 commit comments

Comments
 (0)