Skip to content

Commit 5e75164

Browse files
committed
maintain(main): release 0.13.1
1 parent a49ae29 commit 5e75164

File tree

7 files changed

+30
-8
lines changed

7 files changed

+30
-8
lines changed

.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.13.0"
2+
".": "0.13.1"
33
}

CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# Changelog
22

3+
### [0.13.1](https://github.com/infrahq/infra/compare/v0.13.0...v0.13.1) (2022-05-18)
4+
5+
6+
### Features
7+
8+
* add force flag to grants add ([67fd367](https://github.com/infrahq/infra/commit/67fd36790fa6456f2448e65cfaa1e6d9e0c3a373))
9+
10+
11+
### Bug Fixes
12+
13+
* add singular alias for users ([#1951](https://github.com/infrahq/infra/issues/1951)) ([afc482a](https://github.com/infrahq/infra/commit/afc482a95a7e7549995016ea2cf17eeb71b6afbf))
14+
* client requests should time out ([#1966](https://github.com/infrahq/infra/issues/1966)) ([98aa32f](https://github.com/infrahq/infra/commit/98aa32ffb0966cc4438b5b7392bf8e72f9a4ca1c))
15+
* docker image build sets correct version string ([2fbef36](https://github.com/infrahq/infra/commit/2fbef3628d5189a0637e68f350a0ab6174b3da8e))
16+
* documentation fixes ([#1960](https://github.com/infrahq/infra/issues/1960)) ([10cb28f](https://github.com/infrahq/infra/commit/10cb28f2043d3da29a8bead8c0a1343e6b6f1949))
17+
* openapi gen should not set -dev version in release branches ([0463e28](https://github.com/infrahq/infra/commit/0463e2836226a14953bb98ff7930e3411b8d61bf))
18+
* optional grant role ([b8f281d](https://github.com/infrahq/infra/commit/b8f281d5dabe0bdb4dabeb925a2af2aa415c45a8))
19+
* readme-compatible openapi spec ([#1954](https://github.com/infrahq/infra/issues/1954)) ([034b110](https://github.com/infrahq/infra/commit/034b11082edbd59067c954f03d731a85291c881f))
20+
* remove BUILDVERSION from makefile ([aba1048](https://github.com/infrahq/infra/commit/aba10484da46358a347c61bef3316ea6099a4115))
21+
* remove infra user role from docs ([#1961](https://github.com/infrahq/infra/issues/1961)) ([3033a3b](https://github.com/infrahq/infra/commit/3033a3b61730b93a4739a18f8093153f02bef08d))
22+
* set default key name from identity and key id ([#1985](https://github.com/infrahq/infra/issues/1985)) ([402b6c7](https://github.com/infrahq/infra/commit/402b6c7f68bd00eaf0018c9f2e6ecdbd8b03477b))
23+
* use GITHUB_HEAD_REF instead of GITHUB_REF_NAME ([c39cbc0](https://github.com/infrahq/infra/commit/c39cbc08d4278760387de5bf2e425320d2d653a0))
24+
325
## [0.13.0](https://github.com/infrahq/infra/compare/v0.12.2...v0.13.0) (2022-05-12)
426

527

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN CGO_ENABLED=0 GOOS=linux go install -v -installsuffix cgo -a std
99

1010
ARG TARGETARCH
1111
# {x-release-please-start-version}
12-
ARG BUILDVERSION=0.13.0
12+
ARG BUILDVERSION=0.13.1
1313
# {x-release-please-end}
1414
ARG BUILDVERSION_PRERELEASE
1515
ARG BUILDVERSION_METADATA

docs/api/openapi3.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -681,7 +681,7 @@
681681
"url": "https://www.elastic.co/licensing/elastic-license"
682682
},
683683
"title": "Infra API",
684-
"version": "0.13.1+dev"
684+
"version": "0.13.1"
685685
},
686686
"paths": {
687687
"/api/access-keys": {

docs/install/upgrading.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ Binary releases can be downloaded and installed directly from the repository.
110110

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

123123
<!-- {x-release-please-start-version} -->
124124
```bash
125-
LATEST=0.13.0
125+
LATEST=0.13.1
126126
curl -sSL https://github.com/infrahq/infra/releases/download/v$LATEST/infra_${LATEST}_linux_arm64.zip
127127
unzip -d /usr/local/bin infra_${LATEST}_linux_arm64.zip
128128
```

helm/charts/infra/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ name: infra
33
description: A Helm chart for Infra
44
type: application
55
## {x-release-please-start-version}
6-
version: 0.13.0
7-
appVersion: 0.13.0
6+
version: 0.13.1
7+
appVersion: 0.13.1
88
## {x-release-please-end}

internal/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
var (
1010
Branch = "main"
1111
// {x-release-please-start-version}
12-
Version = "0.13.0"
12+
Version = "0.13.1"
1313
// {x-release-please-end}
1414
Prerelease = ""
1515
Metadata = "dev"

0 commit comments

Comments
 (0)