From cb20ba09ae828aca04f0c6583338e32bb8a3918f Mon Sep 17 00:00:00 2001 From: Joshua Liebow-Feeser Date: Fri, 1 Sep 2023 20:55:10 -0700 Subject: [PATCH] Release 0.7.2 (#306) --- Cargo.toml | 8 ++++---- zerocopy-derive/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c9c6931225..d2ae5fad83 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ [package] edition = "2021" name = "zerocopy" -version = "0.7.1" +version = "0.7.2" authors = ["Joshua Liebow-Feeser "] description = "Utilities for zero-copy parsing and serialization" license = "BSD-2-Clause" @@ -55,7 +55,7 @@ simd-nightly = ["simd"] __internal_use_only_features_that_work_on_stable = ["alloc", "simd"] [dependencies] -zerocopy-derive = { version = "=0.7.1", path = "zerocopy-derive", optional = true } +zerocopy-derive = { version = "=0.7.2", path = "zerocopy-derive", optional = true } [dependencies.byteorder] version = "1.3" @@ -66,7 +66,7 @@ optional = true # zerocopy-derive remain equal, even if the 'derive' feature isn't used. # See: https://github.com/matklad/macro-dep-test [target.'cfg(any())'.dependencies] -zerocopy-derive = { version = "=0.7.1", path = "zerocopy-derive" } +zerocopy-derive = { version = "=0.7.2", path = "zerocopy-derive" } [dev-dependencies] rand = "0.6" @@ -78,4 +78,4 @@ static_assertions = "1.1" # CI test failures. trybuild = "=1.0.80" # In tests, unlike in production, zerocopy-derive is not optional -zerocopy-derive = { version = "=0.7.1", path = "zerocopy-derive" } +zerocopy-derive = { version = "=0.7.2", path = "zerocopy-derive" } diff --git a/zerocopy-derive/Cargo.toml b/zerocopy-derive/Cargo.toml index ef41bb8b2d..3f22d3c1b3 100644 --- a/zerocopy-derive/Cargo.toml +++ b/zerocopy-derive/Cargo.toml @@ -5,7 +5,7 @@ [package] edition = "2021" name = "zerocopy-derive" -version = "0.7.1" +version = "0.7.2" authors = ["Joshua Liebow-Feeser "] description = "Custom derive for traits from the zerocopy crate" license = "BSD-2-Clause"