Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.16.7"
".": "0.17.0"
}
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changelog

## [0.17.0](https://github.com/asdf-vm/asdf/compare/v0.16.7...v0.17.0) (2025-05-19)


### Features

* **golang-rewrite:** add support for shim templates resolution ([#2076](https://github.com/asdf-vm/asdf/issues/2076)) ([a3bccea](https://github.com/asdf-vm/asdf/commit/a3bccea5c9b64bf81675efaa5c76d6eb367fd37f))
* log failure to add plugin in "plugin test" ([#2059](https://github.com/asdf-vm/asdf/issues/2059)) ([92de803](https://github.com/asdf-vm/asdf/commit/92de803ff15f1a887f031d570ae6404f008d829d))
* switch back to native git client ([#1998](https://github.com/asdf-vm/asdf/issues/1998)) ([1efa2bb](https://github.com/asdf-vm/asdf/commit/1efa2bbd04b833d0435a15bddd882beb973cfc2d))


### Bug Fixes

* address linter warning ([67581cf](https://github.com/asdf-vm/asdf/commit/67581cf030d4eb39f261acac5e861444fedad7f6))
* correct intersection logic in `shims.FindExecutable` function so ordering of multiple versions is preserved ([#2063](https://github.com/asdf-vm/asdf/issues/2063)) ([083f20a](https://github.com/asdf-vm/asdf/commit/083f20aa3e21cad594b35972ca570eb47e389899))
* correct output of install command when system or path version set ([#2097](https://github.com/asdf-vm/asdf/issues/2097)) ([82d67e3](https://github.com/asdf-vm/asdf/commit/82d67e3242b0ac4d01cccd9712daaae574ce6eca))
* ensures output always ends with a newline when printed ([#2098](https://github.com/asdf-vm/asdf/issues/2098)) ([6f4837e](https://github.com/asdf-vm/asdf/commit/6f4837ea9b82b442fdfa78c3bb315b088e60dc9c))
* handle tilde in env vars ([#2092](https://github.com/asdf-vm/asdf/issues/2092)) ([6da599a](https://github.com/asdf-vm/asdf/commit/6da599a93ad2655c2bf061c038da330ee4413985))
* remove default error action from plugin command ([#2027](https://github.com/asdf-vm/asdf/issues/2027)) ([c376481](https://github.com/asdf-vm/asdf/commit/c376481cb4d1fa1e67dd9ef326381c07c935151d))
* remove unused ForcePrepend option from Go code ([#2089](https://github.com/asdf-vm/asdf/issues/2089)) ([49e9f33](https://github.com/asdf-vm/asdf/commit/49e9f330a719de6bd599b84c90b93e7d7358043c))
* set correct version for go install and make builds ([#2077](https://github.com/asdf-vm/asdf/issues/2077)) ([4c73527](https://github.com/asdf-vm/asdf/commit/4c73527d6323ca41d8ea9a9e78a8db49f3794d16))

## [0.16.7](https://github.com/asdf-vm/asdf/compare/v0.16.6...v0.16.7) (2025-03-25)


Expand Down
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ not covered under this security policy.**
<!-- x-release-please-start-version -->

```
0.15.0
0.17.0
```

<!-- x-release-please-end -->
Expand Down
2 changes: 1 addition & 1 deletion cmd/asdf/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
)

// Do not touch this next line
var version = "0.16.7" // x-release-please-version
var version = "0.17.0" // x-release-please-version

// Placeholder for the real code
func main() {
Expand Down
4 changes: 2 additions & 2 deletions docs/guide/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ asdf can be installed in several different ways:

<!-- x-release-please-start-version -->
1. [Install Go](https://go.dev/doc/install)
2. Run `go install github.com/asdf-vm/asdf/cmd/asdf@v0.16.0`
2. Run `go install github.com/asdf-vm/asdf/cmd/asdf@v0.17.0`
<!-- x-release-please-end -->

::::
Expand All @@ -48,7 +48,7 @@ asdf can be installed in several different ways:
<!-- x-release-please-start-version -->
1. Clone the asdf repository:
```shell
git clone https://github.com/asdf-vm/asdf.git --branch v0.16.0
git clone https://github.com/asdf-vm/asdf.git --branch v0.17.0
```
<!-- x-release-please-end -->
2. Run `make`
Expand Down
4 changes: 2 additions & 2 deletions docs/ja-jp/guide/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ asdfはいくつかの方法でインストールできます:

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

::::
Expand All @@ -47,7 +47,7 @@ asdfはいくつかの方法でインストールできます:
<!-- x-release-please-start-version -->
1. asdfリポジトリをクローン:
```shell
git clone https://github.com/asdf-vm/asdf.git --branch v0.16.0
git clone https://github.com/asdf-vm/asdf.git --branch v0.17.0
```
<!-- x-release-please-end -->
2. `make`を実行。
Expand Down
2 changes: 1 addition & 1 deletion docs/ko-kr/guide/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ asdf는 `git` & `curl`이 필요합니다. _당신이_ 필요한 패키지 매


```shell
git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.14.0
git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.17.0

```

Expand Down
2 changes: 1 addition & 1 deletion docs/pt-br/guide/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ asdf primarily requires `git` & `curl`. Here is a _non-exhaustive_ list of comma
<!-- x-release-please-start-version -->

```shell
git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.15.0
git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.17.0
```

<!-- x-release-please-end -->
Expand Down
2 changes: 1 addition & 1 deletion docs/zh-hans/guide/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ asdf primarily requires `git` & `curl`. Here is a _non-exhaustive_ list of comma
<!-- x-release-please-start-version -->

```shell
git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.15.0
git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.17.0
```

<!-- x-release-please-end -->
Expand Down
Loading