Skip to content

Commit

Permalink
maintain(main): release 0.11.1 (#1706)
Browse files Browse the repository at this point in the history
  • Loading branch information
infrahq-ci authored Apr 27, 2022
1 parent 5278f2f commit 0ae50ed
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.11.0"
".": "0.11.1"
}
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog

### [0.11.1](https://github.com/infrahq/infra/compare/v0.11.0...v0.11.1) (2022-04-27)


### Features

* import identities through config ([8990200](https://github.com/infrahq/infra/commit/899020095ab0100cade1a6565149dea1d8703662))
* remove admin access key config ([d72ee95](https://github.com/infrahq/infra/commit/d72ee957eac6b0c0fc5fe2e12147518dedd07015))
* User interface refresh ([#1704](https://github.com/infrahq/infra/issues/1704)) ([4826baf](https://github.com/infrahq/infra/commit/4826bafedb1d8db140d72c500d80da454a503015))


### Bug Fixes

* add back local users to quickstart ([#1748](https://github.com/infrahq/infra/issues/1748)) ([5278f2f](https://github.com/infrahq/infra/commit/5278f2f01c4e1f5692df62779811b6667c5ef226))
* connector access key not found when connector is disabled ([51609b7](https://github.com/infrahq/infra/commit/51609b747bb7c6c440ad61cf31be08c7079330c6))
* do not look up k8s name when provided ([#1702](https://github.com/infrahq/infra/issues/1702)) ([95c8eff](https://github.com/infrahq/infra/commit/95c8effd7532e2f0d6bf3527d1bae2b09c989ccd))
* helm chart values.yaml for ui ([#1712](https://github.com/infrahq/infra/issues/1712)) ([1c63c03](https://github.com/infrahq/infra/commit/1c63c039713207297930443a322a85b513f2c0b4))
* only use color logging with a terminal ([d8d9a4d](https://github.com/infrahq/infra/commit/d8d9a4d58b4263befd6e9b53f7a32d156668cc71))
* use common ca instead of sni to generate connector certificates ([#1687](https://github.com/infrahq/infra/issues/1687)) ([43d4c3f](https://github.com/infrahq/infra/commit/43d4c3f710a8e6a3f2190d15bee2521d82da01bf))

## [0.11.0](https://github.com/infrahq/infra/compare/v0.10.3...v0.11.0) (2022-04-22)


Expand Down
2 changes: 1 addition & 1 deletion docs/api/openapi3.json
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@
"url": "https://www.elastic.co/licensing/elastic-license"
},
"title": "Infra API",
"version": "0.11.0"
"version": "0.11.1"
},
"paths": {
"/v1/access-keys": {
Expand Down
4 changes: 2 additions & 2 deletions docs/install/upgrading.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ Binary releases can be downloaded and installed directly from the repository.

<!-- {x-release-please-start-version} -->
```bash
LATEST=0.11.0
LATEST=0.11.1
curl -sSL https://github.com/infrahq/infra/releases/download/v$LATEST/infra_${LATEST}_linux_x86_64.zip
unzip -d /usr/local/bin infra_${LATEST}_linux_x86_64.zip
```
Expand All @@ -122,7 +122,7 @@ Binary releases can be downloaded and installed directly from the repository.

<!-- {x-release-please-start-version} -->
```bash
LATEST=0.11.0
LATEST=0.11.1
curl -sSL https://github.com/infrahq/infra/releases/download/v$LATEST/infra_${LATEST}_linux_arm64.zip
unzip -d /usr/local/bin infra_${LATEST}_linux_arm64.zip
```
Expand Down
4 changes: 2 additions & 2 deletions helm/charts/infra/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ name: infra
description: A Helm chart for Infra
type: application
## {x-release-please-start-version}
version: 0.11.0
appVersion: 0.11.0
version: 0.11.1
appVersion: 0.11.1
## {x-release-please-end}
2 changes: 1 addition & 1 deletion internal/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package internal
var (
Branch = "main"
// {x-release-please-start-version}
Version = "0.11.0"
Version = "0.11.1"
// {x-release-please-end}
Commit = ""
Date = ""
Expand Down

0 comments on commit 0ae50ed

Please sign in to comment.