From 86dfc23d5d257d038bdc485f7dd04d48cd97ce3a Mon Sep 17 00:00:00 2001 From: Joshua Liebow-Feeser Date: Fri, 8 Dec 2023 08:28:58 -0800 Subject: [PATCH] [readme] Link to GitHub Releases (#692) Release 0.7.30 --- Cargo.toml | 8 ++++---- README.md | 6 ++++++ src/lib.rs | 6 ++++++ zerocopy-derive/Cargo.toml | 2 +- 4 files changed, 17 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index be0aae5eb6..5b661903f6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ [package] edition = "2018" name = "zerocopy" -version = "0.7.29" +version = "0.7.30" authors = ["Joshua Liebow-Feeser "] description = "Utilities for zero-copy parsing and serialization" license = "BSD-2-Clause OR Apache-2.0 OR MIT" @@ -49,7 +49,7 @@ simd-nightly = ["simd"] __internal_use_only_features_that_work_on_stable = ["alloc", "derive", "simd"] [dependencies] -zerocopy-derive = { version = "=0.7.29", path = "zerocopy-derive", optional = true } +zerocopy-derive = { version = "=0.7.30", path = "zerocopy-derive", optional = true } [dependencies.byteorder] version = "1.3" @@ -60,7 +60,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.29", path = "zerocopy-derive" } +zerocopy-derive = { version = "=0.7.30", path = "zerocopy-derive" } [dev-dependencies] assert_matches = "1.5" @@ -75,6 +75,6 @@ testutil = { path = "testutil" } # CI test failures. trybuild = { version = "=1.0.85", features = ["diff"] } # In tests, unlike in production, zerocopy-derive is not optional -zerocopy-derive = { version = "=0.7.29", path = "zerocopy-derive" } +zerocopy-derive = { version = "=0.7.30", path = "zerocopy-derive" } # TODO(#381) Remove this dependency once we have our own layout gadgets. elain = "0.3.0" diff --git a/README.md b/README.md index 3d423bd2ae..ec09c4569a 100644 --- a/README.md +++ b/README.md @@ -143,6 +143,12 @@ See our [MSRV policy]. [MSRV policy]: https://github.com/google/zerocopy/blob/main/POLICIES.md#msrv +## Changelog + +Zerocopy uses [GitHub Releases]. + +[GitHub Releases]: https://github.com/google/zerocopy/releases + ## Disclaimer Disclaimer: Zerocopy is not an officially supported Google product. diff --git a/src/lib.rs b/src/lib.rs index fcc5a98f37..a7aadfd880 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -142,6 +142,12 @@ //! See our [MSRV policy]. //! //! [MSRV policy]: https://github.com/google/zerocopy/blob/main/POLICIES.md#msrv +//! +//! # Changelog +//! +//! Zerocopy uses [GitHub Releases]. +//! +//! [GitHub Releases]: https://github.com/google/zerocopy/releases // Sometimes we want to use lints which were added after our MSRV. // `unknown_lints` is `warn` by default and we deny warnings in CI, so without diff --git a/zerocopy-derive/Cargo.toml b/zerocopy-derive/Cargo.toml index 96692d898b..c126084108 100644 --- a/zerocopy-derive/Cargo.toml +++ b/zerocopy-derive/Cargo.toml @@ -9,7 +9,7 @@ [package] edition = "2018" name = "zerocopy-derive" -version = "0.7.29" +version = "0.7.30" authors = ["Joshua Liebow-Feeser "] description = "Custom derive for traits from the zerocopy crate" license = "BSD-2-Clause OR Apache-2.0 OR MIT"