Skip to content

Commit 5aa0bca

Browse files
Release 0.8.23 (#2420)
1 parent b55561d commit 5aa0bca

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
[package]
1616
edition = "2021"
1717
name = "zerocopy"
18-
version = "0.8.22"
18+
version = "0.8.23"
1919
authors = ["Joshua Liebow-Feeser <joshlf@google.com>", "Jack Wrenn <jswrenn@amazon.com>"]
2020
description = "Zerocopy makes zero-cost memory manipulation effortless. We write \"unsafe\" so you don't have to."
2121
categories = ["embedded", "encoding", "no-std::no-alloc", "parsing", "rust-patterns"]
@@ -82,13 +82,13 @@ std = ["alloc"]
8282
__internal_use_only_features_that_work_on_stable = ["alloc", "derive", "simd", "std"]
8383

8484
[dependencies]
85-
zerocopy-derive = { version = "=0.8.22", path = "zerocopy-derive", optional = true }
85+
zerocopy-derive = { version = "=0.8.23", path = "zerocopy-derive", optional = true }
8686

8787
# The "associated proc macro pattern" ensures that the versions of zerocopy and
8888
# zerocopy-derive remain equal, even if the 'derive' feature isn't used.
8989
# See: https://github.com/matklad/macro-dep-test
9090
[target.'cfg(any())'.dependencies]
91-
zerocopy-derive = { version = "=0.8.22", path = "zerocopy-derive" }
91+
zerocopy-derive = { version = "=0.8.23", path = "zerocopy-derive" }
9292

9393
[dev-dependencies]
9494
# More recent versions of `either` have an MSRV higher than ours.
@@ -106,4 +106,4 @@ testutil = { path = "testutil" }
106106
# CI test failures.
107107
trybuild = { version = "=1.0.89", features = ["diff"] }
108108
# In tests, unlike in production, zerocopy-derive is not optional
109-
zerocopy-derive = { version = "=0.8.22", path = "zerocopy-derive" }
109+
zerocopy-derive = { version = "=0.8.23", path = "zerocopy-derive" }

zerocopy-derive/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
[package]
1010
edition = "2021"
1111
name = "zerocopy-derive"
12-
version = "0.8.22"
12+
version = "0.8.23"
1313
authors = ["Joshua Liebow-Feeser <joshlf@google.com>", "Jack Wrenn <jswrenn@amazon.com>"]
1414
description = "Custom derive for traits from the zerocopy crate"
1515
license = "BSD-2-Clause OR Apache-2.0 OR MIT"

0 commit comments

Comments
 (0)