Skip to content

Commit

Permalink
v0.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
LGFae committed Apr 14, 2024
1 parent df8b069 commit 132bde3
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 10 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ default-members = [".", "daemon"]

[package]
name = "swww"
version = "0.9.2-master"
version = "0.9.3"
authors = ["Leonardo Gibrowski Faé <[email protected]>"]
edition = "2021"
rust-version = "1.74"
Expand Down Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions daemon/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "swww-daemon"
version = "0.9.2-master"
version = "0.9.3"
authors = ["Leonardo Gibrowski Faé <[email protected]>"]
edition = "2021"

Expand All @@ -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"
2 changes: 1 addition & 1 deletion utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "utils"
version = "0.9.2-master"
version = "0.9.3"
authors = ["Leonardo Gibrowski Faé <[email protected]>"]
edition = "2021"
license-file = "../LICENSE"
Expand Down

0 comments on commit 132bde3

Please sign in to comment.