Skip to content

Commit

Permalink
*: release v0.17.2 (#3292)
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Stroczynski authored Jun 29, 2020
1 parent 0aa5e6d commit 0258db0
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 11 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## v0.17.2

### Bug Fixes

- 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))

## v0.17.1

### Changes
Expand Down
6 changes: 0 additions & 6 deletions changelog/fragments/3234-arm64-tini-url.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion internal/scaffold/ansible/go_mod.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const goModTmpl = `module {{ .Repo }}
go 1.13
require (
github.com/operator-framework/operator-sdk v0.17.x
github.com/operator-framework/operator-sdk v0.17.2
sigs.k8s.io/controller-runtime v0.5.2
)
Expand Down
2 changes: 1 addition & 1 deletion internal/scaffold/go_mod.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const goModTmpl = `module {{ .Repo }}
go 1.13
require (
github.com/operator-framework/operator-sdk v0.17.x
github.com/operator-framework/operator-sdk v0.17.2
sigs.k8s.io/controller-runtime v0.5.2
)
Expand Down
2 changes: 1 addition & 1 deletion internal/scaffold/helm/go_mod.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const goModTmpl = `module {{ .Repo }}
go 1.13
require (
github.com/operator-framework/operator-sdk v0.17.x
github.com/operator-framework/operator-sdk v0.17.2
sigs.k8s.io/controller-runtime v0.5.2
)
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (

//var needs to be used instead of const for ldflags
var (
Version = "v0.17.1+git"
Version = "v0.17.2"
GitVersion = "unknown"
GitCommit = "unknown"
KubernetesVersion = "unknown"
Expand Down
2 changes: 1 addition & 1 deletion website/content/en/docs/install-operator-sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ $ brew install operator-sdk

```sh
# Set the release version variable
$ RELEASE_VERSION=v0.17.1
$ RELEASE_VERSION=v0.17.2
# Linux
$ curl -LO https://github.com/operator-framework/operator-sdk/releases/download/${RELEASE_VERSION}/operator-sdk-${RELEASE_VERSION}-x86_64-linux-gnu
# macOS
Expand Down
6 changes: 6 additions & 0 deletions website/content/en/docs/migration/v0.17.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
title: v0.17.2
weight: 999982998
---

There are no migrations for this release! :tada:

0 comments on commit 0258db0

Please sign in to comment.