Skip to content

Commit 46cc5dc

Browse files
authored
chore: revert chore release 0.18.0 (#2106) (#2127)
1 parent 96422f8 commit 46cc5dc

File tree

9 files changed

+10
-26
lines changed

9 files changed

+10
-26
lines changed

.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.0"
2+
".": "0.17.0"
33
}

CHANGELOG.md

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

3-
## [0.18.0](https://github.com/asdf-vm/asdf/compare/v0.17.0...v0.18.0) (2025-06-07)
4-
5-
6-
### Features
7-
8-
* `asdf list` exit with status code of 0 when no versions installed ([#2116](https://github.com/asdf-vm/asdf/issues/2116)) ([e7d5289](https://github.com/asdf-vm/asdf/commit/e7d5289c57894ebbc0f966cb91794efd970377af))
9-
10-
11-
### Bug Fixes
12-
13-
* correct flag handling in commands run by `asdf exec` ([#2115](https://github.com/asdf-vm/asdf/issues/2115)) ([d6cd693](https://github.com/asdf-vm/asdf/commit/d6cd6930cff8e7159cb2f1a57b23bd0ec1faa6ac))
14-
* only return version starting with number when no filter is supplied ([#2120](https://github.com/asdf-vm/asdf/issues/2120)) ([cf29b51](https://github.com/asdf-vm/asdf/commit/cf29b5136bbe481ae3803dbdb78086c808eeef7a))
15-
* print all error output to stderr when shim can't be resolved ([#2109](https://github.com/asdf-vm/asdf/issues/2109)) ([c9049ea](https://github.com/asdf-vm/asdf/commit/c9049ea2fd09fc7958fb1a5a5b44e0670740465b))
16-
* rename tool version filename environment variable for clarity ([#2101](https://github.com/asdf-vm/asdf/issues/2101)) ([e3d6014](https://github.com/asdf-vm/asdf/commit/e3d6014419296281c4156fc65a3e02bb542495a2))
17-
* upgrade urfave/cli to version 3 ([#2105](https://github.com/asdf-vm/asdf/issues/2105)) ([392d09a](https://github.com/asdf-vm/asdf/commit/392d09a8b263a5ef18fd05f27312717bf9baa292))
18-
193
## [0.17.0](https://github.com/asdf-vm/asdf/compare/v0.16.7...v0.17.0) (2025-05-19)
204

215

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.0
12+
0.17.0
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.0" // x-release-please-version
13+
var version = "0.17.0" // 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.0`
37+
2. Run `go install github.com/asdf-vm/asdf/cmd/asdf@v0.17.0`
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.0
51+
git clone https://github.com/asdf-vm/asdf.git --branch v0.17.0
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.0`
36+
2. コマンドを実行: `go install github.com/asdf-vm/asdf/cmd/asdf@v0.17.0`
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.0
50+
git clone https://github.com/asdf-vm/asdf.git --branch v0.17.0
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
@@ -36,7 +36,7 @@ asdf는 `git` & `curl`이 필요합니다. _당신이_ 필요한 패키지 매
3636

3737

3838
```shell
39-
git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.18.0
39+
git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.17.0
4040

4141
```
4242

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.0
42+
git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.17.0
4343
```
4444

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

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

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

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

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

0 commit comments

Comments
 (0)