Skip to content

Commit c8e70e8

Browse files
committed
chore(master): release 0.18.2
1 parent 1a4dcf2 commit c8e70e8

9 files changed

Lines changed: 20 additions & 11 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.18.1"
2+
".": "0.18.2"
33
}

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## [0.18.2](https://github.com/asdf-vm/asdf/compare/v0.18.1...v0.18.2) (2026-04-13)
4+
5+
6+
### Bug Fixes
7+
8+
* nushell completions --ignore-errors deprecation ([#2157](https://github.com/asdf-vm/asdf/issues/2157)) ([a813610](https://github.com/asdf-vm/asdf/commit/a813610611852b963c19d90b03c66d05e9a2a7de))
9+
* return error from repo.RemoteUrl function ([71e9567](https://github.com/asdf-vm/asdf/commit/71e9567497b5b66be1dc3e0c143a2eb5d042ffa5))
10+
* use os.PathListSeparator ([#2195](https://github.com/asdf-vm/asdf/issues/2195)) ([d5efb1e](https://github.com/asdf-vm/asdf/commit/d5efb1edd45028f2c113a98b7a11244c08254369))
11+
312
## [0.18.1](https://github.com/asdf-vm/asdf/compare/v0.18.0...v0.18.1) (2026-03-04)
413

514

SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ not covered under this security policy.**
99
<!-- x-release-please-start-version -->
1010

1111
```
12-
0.18.1
12+
0.18.2
1313
```
1414

1515
<!-- x-release-please-end -->

cmd/asdf/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
)
1111

1212
// Do not touch this next line
13-
var version = "0.18.1" // x-release-please-version
13+
var version = "0.18.2" // x-release-please-version
1414

1515
// Placeholder for the real code
1616
func main() {

docs/guide/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ asdf can be installed in several different ways:
3434

3535
<!-- x-release-please-start-version -->
3636
1. [Install Go](https://go.dev/doc/install)
37-
2. Run `go install github.com/asdf-vm/asdf/cmd/asdf@v0.18.1`
37+
2. Run `go install github.com/asdf-vm/asdf/cmd/asdf@v0.18.2`
3838
<!-- x-release-please-end -->
3939

4040
::::
@@ -48,7 +48,7 @@ asdf can be installed in several different ways:
4848
<!-- x-release-please-start-version -->
4949
1. Clone the asdf repository:
5050
```shell
51-
git clone https://github.com/asdf-vm/asdf.git --branch v0.18.1
51+
git clone https://github.com/asdf-vm/asdf.git --branch v0.18.2
5252
```
5353
<!-- x-release-please-end -->
5454
2. Run `make`

docs/ja-jp/guide/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ asdfはいくつかの方法でインストールできます:
3333

3434
<!-- x-release-please-start-version -->
3535
1. [Goをインストールする](https://go.dev/doc/install)
36-
2. コマンドを実行: `go install github.com/asdf-vm/asdf/cmd/asdf@v0.18.1`
36+
2. コマンドを実行: `go install github.com/asdf-vm/asdf/cmd/asdf@v0.18.2`
3737
<!-- x-release-please-end -->
3838

3939
::::
@@ -47,7 +47,7 @@ asdfはいくつかの方法でインストールできます:
4747
<!-- x-release-please-start-version -->
4848
1. asdfリポジトリをクローン:
4949
```shell
50-
git clone https://github.com/asdf-vm/asdf.git --branch v0.18.1
50+
git clone https://github.com/asdf-vm/asdf.git --branch v0.18.2
5151
```
5252
<!-- x-release-please-end -->
5353
2. `make`を実行。

docs/ko-kr/guide/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ asdf는 `git` & `curl`이 필요합니다. _당신이_ 필요한 패키지 매
3535
<!-- x-release-please-start-version -->
3636

3737
```shell
38-
git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.18.1
38+
git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.18.2
3939

4040
```
4141

docs/pt-br/guide/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ asdf primarily requires `git` & `curl`. Here is a _non-exhaustive_ list of comma
3939
<!-- x-release-please-start-version -->
4040

4141
```shell
42-
git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.18.1
42+
git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.18.2
4343
```
4444

4545
<!-- x-release-please-end -->

docs/zh-hans/guide/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ asdf 的安装方式有以下几种:
3434

3535
<!-- x-release-please-start-version -->
3636
1. [安装 Go](https://go.dev/doc/install)
37-
2. 运行 `go install github.com/asdf-vm/asdf/cmd/asdf@v0.18.1`
37+
2. 运行 `go install github.com/asdf-vm/asdf/cmd/asdf@v0.18.2`
3838
<!-- x-release-please-end -->
3939

4040
::::
@@ -48,7 +48,7 @@ asdf 的安装方式有以下几种:
4848
<!-- x-release-please-start-version -->
4949
1. 克隆 asdf 仓库:
5050
```shell
51-
git clone https://github.com/asdf-vm/asdf.git --branch v0.18.1
51+
git clone https://github.com/asdf-vm/asdf.git --branch v0.18.2
5252
```
5353
<!-- x-release-please-end -->
5454
2. 运行 `make`

0 commit comments

Comments
 (0)