Skip to content

Commit

Permalink
Version 0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
filiptibell committed Jul 11, 2024
1 parent f9d48c7 commit 0d3dea8
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 14 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
## `0.1.4` - July 11th, 2024

### Fixed

- `rokit self-update` will no longer encounter an OS error on Windows systems
- `rokit self-update` will no longer encounter an OS error on Windows systems ([#33])

[#33]: https://github.com/rojo-rbx/rokit/pull/33

## `0.1.3` - June 18th, 2024

Expand Down
17 changes: 8 additions & 9 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rokit"
version = "0.1.3"
version = "0.1.4"
edition = "2021"
license = "MIT"
repository = "https://github.com/rojo-rbx/rokit"
Expand Down Expand Up @@ -34,7 +34,7 @@ strip = true
lto = true

[dependencies]
dashmap = { version = "5.5", features = ["serde"] }
dashmap = { version = "6.0", features = ["serde"] }
dirs = "5.0"
dunce = "1.0"
filepath = "0.1"
Expand Down Expand Up @@ -66,7 +66,7 @@ reqwest = { version = "0.12", default-features = false, features = [
"deflate",
] }
reqwest-middleware = "0.3"
reqwest-retry = "0.5"
reqwest-retry = "0.6"
reqwest-tracing = "0.5"
tokio = { version = "1.36", features = ["full"] }
tracing = "0.1"
Expand Down
1 change: 1 addition & 0 deletions lib/storage/tool_storage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,7 @@ impl ToolStorage {
// with the OS killing the current executable when its overwritten.
if rokit_link_existed {
let temp_file = tempfile::tempfile()?;
#[allow(unused_mut)]
let mut temp_path = temp_file.path()?;
#[cfg(windows)]
{
Expand Down

0 comments on commit 0d3dea8

Please sign in to comment.