diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 513fac0e9..19ee807a9 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.18.1" + ".": "0.19.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index b6ac46d0c..99f810699 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [0.19.0](https://github.com/asdf-vm/asdf/compare/v0.18.1...v0.19.0) (2026-04-24) + + +### Features + +* don't override semver ordering during completion ([#2263](https://github.com/asdf-vm/asdf/issues/2263)) ([aaa84d2](https://github.com/asdf-vm/asdf/commit/aaa84d2f113f4d6514038c7953ba9f1f2311523a)) + + +### Bug Fixes + +* convert hyphens to underscores when converting plugin names to generate valid environment variables ([2ffb5b8](https://github.com/asdf-vm/asdf/commit/2ffb5b871c9339a3edbaa4fe4ffecf62a90afc81)) +* make plugin test command resolve latest version properly ([1485ff4](https://github.com/asdf-vm/asdf/commit/1485ff42e7a661846c12fd8b577c72c2969a9868)) +* nushell completions --ignore-errors deprecation ([#2157](https://github.com/asdf-vm/asdf/issues/2157)) ([a813610](https://github.com/asdf-vm/asdf/commit/a813610611852b963c19d90b03c66d05e9a2a7de)) +* return error from repo.RemoteUrl function ([71e9567](https://github.com/asdf-vm/asdf/commit/71e9567497b5b66be1dc3e0c143a2eb5d042ffa5)) +* set ASDF_INSTALL_* environment variables for reshim command ([3ec1610](https://github.com/asdf-vm/asdf/commit/3ec1610956426b4aca271edff9df6f63572108bc)) +* use os.PathListSeparator ([#2195](https://github.com/asdf-vm/asdf/issues/2195)) ([d5efb1e](https://github.com/asdf-vm/asdf/commit/d5efb1edd45028f2c113a98b7a11244c08254369)) + ## [0.18.1](https://github.com/asdf-vm/asdf/compare/v0.18.0...v0.18.1) (2026-03-04) diff --git a/SECURITY.md b/SECURITY.md index 5a09d7eff..687d45e22 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -9,7 +9,7 @@ not covered under this security policy.** ``` -0.18.1 +0.19.0 ``` diff --git a/cmd/asdf/main.go b/cmd/asdf/main.go index 831510f40..2f1c57a05 100644 --- a/cmd/asdf/main.go +++ b/cmd/asdf/main.go @@ -10,7 +10,7 @@ import ( ) // Do not touch this next line -var version = "0.18.1" // x-release-please-version +var version = "0.19.0" // x-release-please-version // Placeholder for the real code func main() { diff --git a/docs/guide/getting-started.md b/docs/guide/getting-started.md index 2ce47c560..3e1c12a6a 100644 --- a/docs/guide/getting-started.md +++ b/docs/guide/getting-started.md @@ -34,7 +34,7 @@ asdf can be installed in several different ways: 1. [Install Go](https://go.dev/doc/install) -2. Run `go install github.com/asdf-vm/asdf/cmd/asdf@v0.18.1` +2. Run `go install github.com/asdf-vm/asdf/cmd/asdf@v0.19.0` :::: @@ -48,7 +48,7 @@ asdf can be installed in several different ways: 1. Clone the asdf repository: ```shell - git clone https://github.com/asdf-vm/asdf.git --branch v0.18.1 + git clone https://github.com/asdf-vm/asdf.git --branch v0.19.0 ``` 2. Run `make` diff --git a/docs/ja-jp/guide/getting-started.md b/docs/ja-jp/guide/getting-started.md index ea71ac92e..3a90cc98e 100644 --- a/docs/ja-jp/guide/getting-started.md +++ b/docs/ja-jp/guide/getting-started.md @@ -33,7 +33,7 @@ asdfはいくつかの方法でインストールできます: 1. [Goをインストールする](https://go.dev/doc/install) -2. コマンドを実行: `go install github.com/asdf-vm/asdf/cmd/asdf@v0.18.1` +2. コマンドを実行: `go install github.com/asdf-vm/asdf/cmd/asdf@v0.19.0` :::: @@ -47,7 +47,7 @@ asdfはいくつかの方法でインストールできます: 1. asdfリポジトリをクローン: ```shell - git clone https://github.com/asdf-vm/asdf.git --branch v0.18.1 + git clone https://github.com/asdf-vm/asdf.git --branch v0.19.0 ``` 2. `make`を実行。 diff --git a/docs/ko-kr/guide/getting-started.md b/docs/ko-kr/guide/getting-started.md index a0df36917..abe89bea4 100644 --- a/docs/ko-kr/guide/getting-started.md +++ b/docs/ko-kr/guide/getting-started.md @@ -35,7 +35,7 @@ asdf는 `git` & `curl`이 필요합니다. _당신이_ 필요한 패키지 매 ```shell -git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.18.1 +git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.19.0 ``` diff --git a/docs/pt-br/guide/getting-started.md b/docs/pt-br/guide/getting-started.md index 810e26555..4a3725911 100644 --- a/docs/pt-br/guide/getting-started.md +++ b/docs/pt-br/guide/getting-started.md @@ -39,7 +39,7 @@ asdf primarily requires `git` & `curl`. Here is a _non-exhaustive_ list of comma ```shell -git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.18.1 +git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.19.0 ``` diff --git a/docs/zh-hans/guide/getting-started.md b/docs/zh-hans/guide/getting-started.md index 9a38e8efd..8ed6d9c44 100644 --- a/docs/zh-hans/guide/getting-started.md +++ b/docs/zh-hans/guide/getting-started.md @@ -34,7 +34,7 @@ asdf 的安装方式有以下几种: 1. [安装 Go](https://go.dev/doc/install) -2. 运行 `go install github.com/asdf-vm/asdf/cmd/asdf@v0.18.1` +2. 运行 `go install github.com/asdf-vm/asdf/cmd/asdf@v0.19.0` :::: @@ -48,7 +48,7 @@ asdf 的安装方式有以下几种: 1. 克隆 asdf 仓库: ```shell - git clone https://github.com/asdf-vm/asdf.git --branch v0.18.1 + git clone https://github.com/asdf-vm/asdf.git --branch v0.19.0 ``` 2. 运行 `make`