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
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ ASDF Plugin Manager allows you to pin `asdf` plugin info like Git URL and ref fo
- [Overview](#overview)
- [Why?](#why)
- [Dependencies](#dependencies)
- [Compatibility](#compatibility)
- [Install](#install)
- [Example](#example)
- [Parameters](#parameters)
Expand All @@ -49,6 +50,15 @@ Hence, `asdf-plugin-manager` fills the gap to manage asdf plugins securely and d
- `ASDF_PLUGIN_MANAGER_PLUGIN_VERSIONS_FILENAME`: Set the default name for the file with the list of managed plugins.
Default: `.plugin-versions`.

# Compatibility

Since the release of ASDF `v0.16.0` there have been a number of [breaking changes](https://asdf-vm.com/guide/upgrading-to-v0-16.html) as it was [completely rewritten](https://github.com/asdf-vm/asdf/releases/tag/v0.16.0). Use the table below to determine which version of `asdf-plugin-manager` to use.

| ASDF Version | Compatible Plugin Manager Version |
|------------------------|-----------------------------------|
| v0.15.0 (or older) | v1.4.0 (or older) |
| v0.16.0 (or newer) | v1.5.0 (or newer) |

# Install

> **Note**
Expand Down
2 changes: 1 addition & 1 deletion cli/asdf-plugin-manager.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ print_git_compare_url() {
}

export_plugins() {
asdf plugin-list --refs --urls | tr -s ' ' | cut -d ' ' -f 1,2,4 | column -t
asdf plugin list --refs --urls | tr -s ' ' | cut -d ' ' -f 1,2,4 | column -t
}

# Mimic 'asdf plugin update' to avoid "fatal: couldn't find remote ref ...".
Expand Down