Skip to content

Commit

Permalink
chore: Release mise version 2024.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Jan 2, 2024
1 parent e5897d0 commit 0d0d930
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mise"
version = "2024.0.0"
version = "2024.1.0"
edition = "2021"
description = "The front-end to your dev env"
authors = ["Jeff Dickey (@jdx)"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Install mise on macOS (other methods [here](https://mise.jdx.dev/getting-started
```sh-session
$ curl https://mise.jdx.dev/install.sh | sh
$ ~/.local/share/mise/bin/mise --version
mise 2024.0.0
mise 2024.1.0
```

Hook mise into your shell (pick the right one for your shell):
Expand Down
2 changes: 1 addition & 1 deletion default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ let
in
rustPlatform.buildRustPackage {
pname = "mise";
version = "2024.0.0";
version = "2024.1.0";

src = lib.cleanSource ./.;

Expand Down
2 changes: 1 addition & 1 deletion packaging/rpm/mise.spec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Summary: The front-end to your dev env
Name: mise
Version: 2024.0.0
Version: 2024.1.0
Release: 1
URL: https://github.com/jdx/mise/
Group: System
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/external_plugin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ impl ExternalPlugin {
fn build_script_man(name: &str, plugin_path: &Path) -> ScriptManager {
let plugin_path_s = plugin_path.to_string_lossy().to_string();
ScriptManager::new(plugin_path.to_path_buf())
.with_env("RTX_PLUGIN_PATH", &plugin_path_s)
.with_env("RTX_PLUGIN_PATH", plugin_path_s)
.with_env("RTX_PLUGIN_NAME", name.to_string())
.with_env("RTX_SHIMS_DIR", &*dirs::SHIMS)
.with_env("MISE_PLUGIN_NAME", name.to_string())
Expand Down

0 comments on commit 0d0d930

Please sign in to comment.