Skip to content

Commit

Permalink
Release independent packages
Browse files Browse the repository at this point in the history
[email protected]

Generated by cargo-workspaces
  • Loading branch information
sigmaSd committed Nov 5, 2024
1 parent f7c8718 commit 3c2365c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
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 crates/irust_repl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "irust_repl"
version = "0.24.8"
version = "0.24.9"
authors = ["Nbiba Bedis <[email protected]>"]
edition = "2021"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion crates/irust_repl/src/cargo_cmds.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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"))]
{
Expand Down

0 comments on commit 3c2365c

Please sign in to comment.