diff --git a/Cargo.toml b/Cargo.toml index 8c5c90ae..e9037353 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -64,12 +64,12 @@ cfg_aliases = "0.2.0" [dependencies] bitflags = "2" cursor-icon = "1.1.0" +dpi = { version = "0.1.1", path = "dpi" } rwh_04 = { package = "raw-window-handle", version = "0.4", optional = true } rwh_05 = { package = "raw-window-handle", version = "0.5.2", features = ["std"], optional = true } rwh_06 = { package = "raw-window-handle", version = "0.6", features = ["std"], optional = true } serde = { workspace = true, optional = true } smol_str = "0.2.0" -dpi = { path = "dpi" } tracing = { version = "0.1.40", default_features = false } [dev-dependencies] diff --git a/dpi/CHANGELOG.md b/dpi/CHANGELOG.md index ec2333e4..0c4e4544 100644 --- a/dpi/CHANGELOG.md +++ b/dpi/CHANGELOG.md @@ -9,10 +9,12 @@ PR's changelog entry would go into the wrong section). And please only add new entries to the top of this list, right below the `# Unreleased` header. -# Unreleased +## Unreleased + +## 0.1.1 - Derive `Debug`, `Copy`, `Clone`, `PartialEq`, `Serialize`, `Deserialize` traits for `PixelUnit`. -# 0.1.0 +## 0.1.0 - Add `LogicalUnit`, `PhysicalUnit` and `PixelUnit` types and related functions. diff --git a/dpi/Cargo.toml b/dpi/Cargo.toml index 41aabb53..94010550 100644 --- a/dpi/Cargo.toml +++ b/dpi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dpi" -version = "0.1.0" +version = "0.1.1" description = "Types for handling UI scaling" keywords = ["DPI", "HiDPI", "scale-factor"] categories = ["gui"]