diff --git a/helper_crates/const-field-offset/CHANGELOG.md b/helper_crates/const-field-offset/CHANGELOG.md index 302cffb90f8..0d5003450f9 100644 --- a/helper_crates/const-field-offset/CHANGELOG.md +++ b/helper_crates/const-field-offset/CHANGELOG.md @@ -2,6 +2,10 @@ # Changelog +## [0.1.4] - 2024-02-20 + + - Warning fixes + ## [0.1.3] - 2023-04-03 - Upgraded syn to syn 2 diff --git a/helper_crates/const-field-offset/Cargo.toml b/helper_crates/const-field-offset/Cargo.toml index e0c3687a046..cf818e6e252 100644 --- a/helper_crates/const-field-offset/Cargo.toml +++ b/helper_crates/const-field-offset/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "const-field-offset" -version = "0.1.3" +version = "0.1.4" authors = ["Slint Developers "] edition = "2021" license = "MIT OR Apache-2.0" @@ -15,7 +15,7 @@ homepage = "https://slint.dev" field-offset-trait = ["const-field-offset-macro/field-offset-trait"] [dependencies] -const-field-offset-macro = { version = "=0.1.3", path = "./macro" } +const-field-offset-macro = { version = "=0.1.4", path = "./macro" } field-offset = "0.3.2" [dev-dependencies] diff --git a/helper_crates/const-field-offset/macro/Cargo.toml b/helper_crates/const-field-offset/macro/Cargo.toml index 0e61016b1f7..c1485e4ca91 100644 --- a/helper_crates/const-field-offset/macro/Cargo.toml +++ b/helper_crates/const-field-offset/macro/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "const-field-offset-macro" -version = "0.1.3" +version = "0.1.4" authors = ["Slint Developers "] edition = "2021" license = "MIT OR Apache-2.0"