diff --git a/CHANGELOG.md b/CHANGELOG.md index 71cc48e..4352ded 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,19 @@ ### Unreleased +### 0.9.3 + +Quick release to fix a scaling error that might affect a lot of people. + +#### Fixes + * fix wrong scale calculation + +#### Internal Improvements + * deleted leftover `/proc` traversal code in the client + * no longer setting nonblocking mode for daemon socket, since we are already + polling it + * better IPC structs between client and daemon + ### 0.9.2 #### Fixes diff --git a/Cargo.lock b/Cargo.lock index d644253..134b8cd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -236,9 +236,9 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" [[package]] name = "cc" -version = "1.0.92" +version = "1.0.94" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2678b2e3449475e95b0aa6f9b506a28e61b3dc8996592b983695e8ebb58a8b41" +checksum = "17f6e324229dc011159fcc089755d1e2e216a90d43a7dea6853ca740b84f35e7" dependencies = [ "jobserver", "libc", @@ -1370,7 +1370,7 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" [[package]] name = "swww" -version = "0.9.2-master" +version = "0.9.3" dependencies = [ "assert_cmd", "clap", @@ -1383,7 +1383,7 @@ dependencies = [ [[package]] name = "swww-daemon" -version = "0.9.2-master" +version = "0.9.3" dependencies = [ "bitcode", "keyframe", @@ -1579,7 +1579,7 @@ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] name = "utils" -version = "0.9.2-master" +version = "0.9.3" dependencies = [ "bitcode", "criterion", diff --git a/Cargo.toml b/Cargo.toml index 4d53c8c..b2295d0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ default-members = [".", "daemon"] [package] name = "swww" -version = "0.9.2-master" +version = "0.9.3" authors = ["Leonardo Gibrowski Faé "] edition = "2021" rust-version = "1.74" @@ -34,7 +34,7 @@ image = "0.25" fast_image_resize = "3.0" clap = { version = "4.5", features = ["derive", "wrap_help", "env"] } rand = "0.8" -utils = { version = "0.9.2-master", path = "utils" } +utils = { version = "0.9.3", path = "utils" } [dev-dependencies] assert_cmd = "2.0" diff --git a/daemon/Cargo.toml b/daemon/Cargo.toml index c9dd3ad..8e3231a 100644 --- a/daemon/Cargo.toml +++ b/daemon/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "swww-daemon" -version = "0.9.2-master" +version = "0.9.3" authors = ["Leonardo Gibrowski Faé "] edition = "2021" @@ -26,6 +26,6 @@ spin_sleep = "1.2" sd-notify = { version = "0.4.1" } -utils = { version = "0.9.2-master", path = "../utils" } +utils = { version = "0.9.3", path = "../utils" } [dev-dependencies] rand = "0.8" diff --git a/utils/Cargo.toml b/utils/Cargo.toml index 56cb705..62bf4a5 100644 --- a/utils/Cargo.toml +++ b/utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "utils" -version = "0.9.2-master" +version = "0.9.3" authors = ["Leonardo Gibrowski Faé "] edition = "2021" license-file = "../LICENSE"