diff --git a/CHANGELOG.md b/CHANGELOG.md index f86fbd1..3d30374 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## v0.7.0 (2024-01-02) + +- Allow buffer types to accept `?Sized` types +- Fix min `syn` version (v2.0.1) +- Updated `glam` to v0.25 +- Updated `vek` to v0.16 +- Updated `rpds` to v1 +- Updated `archery` to v1 + ## v0.6.1 (2023-05-09) - Fix erroring on attributes not owned by this crate diff --git a/Cargo.toml b/Cargo.toml index 0b14309..777a726 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "encase" -version = "0.6.1" +version = "0.7.0" edition = "2021" rust-version = "1.63" @@ -29,7 +29,7 @@ harness = false members = ["derive", "derive/impl"] [dependencies] -encase_derive = { version = "=0.6.1", path = "derive" } +encase_derive = { version = "=0.7.0", path = "derive" } thiserror = { version = "1", default-features = false } const_panic = { version = "0.2", default-features = false } diff --git a/derive/Cargo.toml b/derive/Cargo.toml index 4ce373c..b497372 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "encase_derive" -version = "0.6.1" +version = "0.7.0" edition = "2021" license = "MIT-0" @@ -14,4 +14,4 @@ categories = ["rendering"] proc-macro = true [dependencies] -encase_derive_impl = { version = "=0.6.1", path = "./impl" } \ No newline at end of file +encase_derive_impl = { version = "=0.7.0", path = "./impl" } \ No newline at end of file diff --git a/derive/impl/Cargo.toml b/derive/impl/Cargo.toml index 61935fe..98f1830 100644 --- a/derive/impl/Cargo.toml +++ b/derive/impl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "encase_derive_impl" -version = "0.6.1" +version = "0.7.0" edition = "2021" license = "MIT-0"