From 896d77741d2f731be30eda542bdd8eaa88229d19 Mon Sep 17 00:00:00 2001 From: Steven Lee Date: Sat, 27 Apr 2024 21:50:50 +0800 Subject: [PATCH] pr-57 --- CHANGELOG.md | 4 ++++ crates/uiautomation/Cargo.toml | 4 ++-- crates/uiautomation_derive/Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index be15153..a9ef1fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -134,3 +134,7 @@ ## v0.9.3 + fix [issues-52](https://github.com/leexgone/uiautomation-rs/issues/52) + +## v0.10.0 + ++ Fix typo in method names (ragne -> range) [#57](https://github.com/leexgone/uiautomation-rs/pull/57) diff --git a/crates/uiautomation/Cargo.toml b/crates/uiautomation/Cargo.toml index dd5517d..4419238 100644 --- a/crates/uiautomation/Cargo.toml +++ b/crates/uiautomation/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uiautomation" -version = "0.9.3" +version = "0.10.0" edition = "2021" license = "Apache-2.0" authors = ["Steven Lee "] @@ -19,7 +19,7 @@ targets = ["aarch64-pc-windows-msvc", "i686-pc-windows-msvc", "x86_64-pc-windows chrono = "0.4.38" phf = { version = "0.11.2", features = ["macros"] } -uiautomation_derive = { version = "0.2.24", path = "../uiautomation_derive" } +uiautomation_derive = { version = "0.3.0", path = "../uiautomation_derive" } [dependencies.windows] version = "0.56.0" diff --git a/crates/uiautomation_derive/Cargo.toml b/crates/uiautomation_derive/Cargo.toml index 4df5794..22729fa 100644 --- a/crates/uiautomation_derive/Cargo.toml +++ b/crates/uiautomation_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uiautomation_derive" -version = "0.2.24" +version = "0.3.0" edition = "2021" license = "Apache-2.0" authors = ["Steven Lee "]