From 3c2365c5277d24c248a1833e9ef00e5d0612e2b3 Mon Sep 17 00:00:00 2001 From: Nbiba Bedis Date: Tue, 5 Nov 2024 07:54:36 +0100 Subject: [PATCH] Release independent packages irust_repl@0.24.9 Generated by cargo-workspaces --- CHANGELOG.md | 3 +++ Cargo.lock | 2 +- crates/irust_repl/Cargo.toml | 2 +- crates/irust_repl/src/cargo_cmds.rs | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ad2a2b..9f6c310 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +**1.71.29** +- Hot fix for mac build + **1.71.28** - Workaround macos permissions issue, by using the cache dir as default location for repls diff --git a/Cargo.lock b/Cargo.lock index 70ca142..c1482a4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -158,7 +158,7 @@ dependencies = [ [[package]] name = "irust_repl" -version = "0.24.8" +version = "0.24.9" dependencies = [ "dirs", "serde", diff --git a/crates/irust_repl/Cargo.toml b/crates/irust_repl/Cargo.toml index bfe7ab2..a3bb603 100644 --- a/crates/irust_repl/Cargo.toml +++ b/crates/irust_repl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "irust_repl" -version = "0.24.8" +version = "0.24.9" authors = ["Nbiba Bedis "] edition = "2021" readme = "README.md" diff --git a/crates/irust_repl/src/cargo_cmds.rs b/crates/irust_repl/src/cargo_cmds.rs index 5302169..01a8584 100644 --- a/crates/irust_repl/src/cargo_cmds.rs +++ b/crates/irust_repl/src/cargo_cmds.rs @@ -61,7 +61,7 @@ impl CargoPaths { // so we use the cache directory instead #[cfg(target_os = "macos")] { - dirs::cache_dir().unwrap_or_else(std::env::temp_dir); + dirs::cache_dir().unwrap_or_else(std::env::temp_dir) } #[cfg(not(target_os = "macos"))] {