diff --git a/.changes/dpi-crate.md b/.changes/dpi-crate.md deleted file mode 100644 index b87379c86..000000000 --- a/.changes/dpi-crate.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"tao": "minor" ---- - -Replaced `dpi` module with a re-export of the `dpi` crate which has a few breaking changes: - -- Replaced `LogicalPixel` with `LogicalUnit` -- Replaced `PhysicalPixel` with `PhysicalUnit` -- Removed `Size::width`, `Size::height`, `Position::x`, `Position::y` and `PixelUnit::value`. diff --git a/CHANGELOG.md b/CHANGELOG.md index 9bb7a66b5..e36c47350 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## \[0.27.0] + +- [`c2357732`](https://github.com/tauri-apps/tao/commit/c23577325bd26e7e8eb46e17bbf533717e363e04)([#896](https://github.com/tauri-apps/tao/pull/896)) Replaced `dpi` module with a re-export of the `dpi` crate which has a few breaking changes: + + - Replaced `LogicalPixel` with `LogicalUnit` + - Replaced `PhysicalPixel` with `PhysicalUnit` + - Removed `Size::width`, `Size::height`, `Position::x`, `Position::y` and `PixelUnit::value`. + ## \[0.26.2] - [`17f54d40`](https://github.com/tauri-apps/tao/commit/17f54d402838e20c05c05a1cf3db9e0f76e7fa68)([#887](https://github.com/tauri-apps/tao/pull/887)) Update `windows` crate to `0.54` diff --git a/Cargo.toml b/Cargo.toml index 78b8ea7ae..74348db46 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tao" -version = "0.26.2" +version = "0.27.0" description = "Cross-platform window manager library." authors = [ "Tauri Programme within The Commons Conservancy", @@ -28,7 +28,7 @@ targets = [ [features] default = [ "rwh_06" ] -serde = ["dep:serde", "dpi/serde"] +serde = [ "dep:serde", "dpi/serde" ] [workspace] members = [ "tao-macros" ]