diff --git a/Cargo.lock b/Cargo.lock index e04e70df3f..00b8b3f11d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1329,7 +1329,7 @@ dependencies = [ [[package]] name = "mise" -version = "2024.1.4" +version = "2024.1.5" dependencies = [ "base64", "built", diff --git a/Cargo.toml b/Cargo.toml index 3a2eefb9ce..3116354a73 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mise" -version = "2024.1.4" +version = "2024.1.5" edition = "2021" description = "The front-end to your dev env" authors = ["Jeff Dickey (@jdx)"] diff --git a/default.nix b/default.nix index c72736d850..75ea3947c6 100644 --- a/default.nix +++ b/default.nix @@ -7,7 +7,7 @@ let in rustPlatform.buildRustPackage { pname = "mise"; - version = "2024.1.4"; + version = "2024.1.5"; src = lib.cleanSource ./.; diff --git a/man/man1/mise.1 b/man/man1/mise.1 index 70515b893f..e47894e732 100644 --- a/man/man1/mise.1 +++ b/man/man1/mise.1 @@ -1,6 +1,6 @@ .ie \n(.g .ds Aq \(aq .el .ds Aq ' -.TH mise 1 "mise 2024.1.4" +.TH mise 1 "mise 2024.1.5" .SH NAME mise \- The front\-end to your dev env .SH SYNOPSIS @@ -160,6 +160,6 @@ Examples: $ mise use \-g node@system Use system node everywhere unless overridden $ mise x node@20 \-\- node app.js Run `node app.js` with node\-20.x on PATH .SH VERSION -v2024.1.4 +v2024.1.5 .SH AUTHORS Jeff Dickey <@jdx> diff --git a/packaging/rpm/mise.spec b/packaging/rpm/mise.spec index 9ce17aa1c7..76d3a62a77 100644 --- a/packaging/rpm/mise.spec +++ b/packaging/rpm/mise.spec @@ -1,6 +1,6 @@ Summary: The front-end to your dev env Name: mise -Version: 2024.1.4 +Version: 2024.1.5 Release: 1 URL: https://github.com/jdx/mise/ Group: System diff --git a/src/default_shorthands.rs b/src/default_shorthands.rs index 45b99702c7..7196647369 100644 --- a/src/default_shorthands.rs +++ b/src/default_shorthands.rs @@ -198,7 +198,7 @@ pub static DEFAULT_SHORTHANDS: Lazy> = ("ejson", "https://github.com/cipherstash/asdf-ejson.git"), ("eksctl", "https://github.com/elementalvoid/asdf-eksctl.git"), ("elasticsearch", "https://github.com/asdf-community/asdf-elasticsearch.git"), - ("elixir", "https://github.com/asdf-vm/asdf-elixir.git"), + ("elixir", "https://github.com/mise-plugins/mise-elixir.git"), ("elixir-ls", "https://github.com/juantascon/asdf-elixir-ls"), ("elm", "https://github.com/asdf-community/asdf-elm.git"), ("embulk", "https://github.com/yuokada/asdf-embulk.git"), @@ -738,4 +738,5 @@ pub static DEFAULT_SHORTHANDS: Lazy> = pub static TRUSTED_SHORTHANDS: Lazy> = Lazy::new(|| HashSet::from([ "dt", + "elixir", ]));