Skip to content

Commit

Permalink
release v0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
teoxoy committed Apr 24, 2024
1 parent a1f8660 commit 13bbfdd
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "encase"
version = "0.7.0"
version = "0.8.0"
edition = "2021"
rust-version = "1.68.2"

Expand Down Expand Up @@ -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 }
Expand Down
4 changes: 2 additions & 2 deletions derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "encase_derive"
version = "0.7.0"
version = "0.8.0"
edition = "2021"

license = "MIT-0"
Expand All @@ -14,4 +14,4 @@ categories = ["rendering"]
proc-macro = true

[dependencies]
encase_derive_impl = { version = "=0.7.0", path = "./impl" }
encase_derive_impl = { version = "=0.8.0", path = "./impl" }
2 changes: 1 addition & 1 deletion derive/impl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "encase_derive_impl"
version = "0.7.0"
version = "0.8.0"
edition = "2021"

license = "MIT-0"
Expand Down

0 comments on commit 13bbfdd

Please sign in to comment.