From 13bbfddbb7866e3225351a6612af239940817b90 Mon Sep 17 00:00:00 2001 From: teoxoy <28601907+teoxoy@users.noreply.github.com> Date: Wed, 24 Apr 2024 12:20:45 +0200 Subject: [PATCH] release v0.8.0 --- CHANGELOG.md | 4 +++- Cargo.toml | 4 ++-- derive/Cargo.toml | 4 ++-- derive/impl/Cargo.toml | 2 +- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index acb9a7e..c5990b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,9 @@ # Changelog -## Unreleased +## v0.8.0 (2024-04-24) +- Internal optimization: faster copying of POD types +- Added support for writing to uninitialized memory - Increased MSRV to 1.68.2 - Updated `glam` to v0.27 diff --git a/Cargo.toml b/Cargo.toml index e380a47..3bf700c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "encase" -version = "0.7.0" +version = "0.8.0" edition = "2021" rust-version = "1.68.2" @@ -29,7 +29,7 @@ harness = false members = ["derive", "derive/impl"] [dependencies] -encase_derive = { version = "=0.7.0", path = "derive" } +encase_derive = { version = "=0.8.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 b497372..5a0ba5f 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "encase_derive" -version = "0.7.0" +version = "0.8.0" edition = "2021" license = "MIT-0" @@ -14,4 +14,4 @@ categories = ["rendering"] proc-macro = true [dependencies] -encase_derive_impl = { version = "=0.7.0", path = "./impl" } \ No newline at end of file +encase_derive_impl = { version = "=0.8.0", path = "./impl" } \ No newline at end of file diff --git a/derive/impl/Cargo.toml b/derive/impl/Cargo.toml index 98f1830..f6871a0 100644 --- a/derive/impl/Cargo.toml +++ b/derive/impl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "encase_derive_impl" -version = "0.7.0" +version = "0.8.0" edition = "2021" license = "MIT-0"