Skip to content

Commit 961612f

Browse files
authored
[readme] Link to GitHub Releases (#692) (#693)
Release 0.7.30
1 parent 449b78c commit 961612f

File tree

4 files changed

+17
-5
lines changed

4 files changed

+17
-5
lines changed

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
[package]
1616
edition = "2018"
1717
name = "zerocopy"
18-
version = "0.7.29"
18+
version = "0.7.30"
1919
authors = ["Joshua Liebow-Feeser <joshlf@google.com>"]
2020
description = "Utilities for zero-copy parsing and serialization"
2121
license = "BSD-2-Clause OR Apache-2.0 OR MIT"
@@ -49,7 +49,7 @@ simd-nightly = ["simd"]
4949
__internal_use_only_features_that_work_on_stable = ["alloc", "derive", "simd"]
5050

5151
[dependencies]
52-
zerocopy-derive = { version = "=0.7.29", path = "zerocopy-derive", optional = true }
52+
zerocopy-derive = { version = "=0.7.30", path = "zerocopy-derive", optional = true }
5353

5454
[dependencies.byteorder]
5555
version = "1.3"
@@ -60,7 +60,7 @@ optional = true
6060
# zerocopy-derive remain equal, even if the 'derive' feature isn't used.
6161
# See: https://github.com/matklad/macro-dep-test
6262
[target.'cfg(any())'.dependencies]
63-
zerocopy-derive = { version = "=0.7.29", path = "zerocopy-derive" }
63+
zerocopy-derive = { version = "=0.7.30", path = "zerocopy-derive" }
6464

6565
[dev-dependencies]
6666
assert_matches = "1.5"
@@ -75,6 +75,6 @@ testutil = { path = "testutil" }
7575
# CI test failures.
7676
trybuild = { version = "=1.0.85", features = ["diff"] }
7777
# In tests, unlike in production, zerocopy-derive is not optional
78-
zerocopy-derive = { version = "=0.7.29", path = "zerocopy-derive" }
78+
zerocopy-derive = { version = "=0.7.30", path = "zerocopy-derive" }
7979
# TODO(#381) Remove this dependency once we have our own layout gadgets.
8080
elain = "0.3.0"

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,12 @@ See our [MSRV policy].
143143

144144
[MSRV policy]: https://github.com/google/zerocopy/blob/main/POLICIES.md#msrv
145145

146+
## Changelog
147+
148+
Zerocopy uses [GitHub Releases].
149+
150+
[GitHub Releases]: https://github.com/google/zerocopy/releases
151+
146152
## Disclaimer
147153

148154
Disclaimer: Zerocopy is not an officially supported Google product.

src/lib.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,12 @@
142142
//! See our [MSRV policy].
143143
//!
144144
//! [MSRV policy]: https://github.com/google/zerocopy/blob/main/POLICIES.md#msrv
145+
//!
146+
//! # Changelog
147+
//!
148+
//! Zerocopy uses [GitHub Releases].
149+
//!
150+
//! [GitHub Releases]: https://github.com/google/zerocopy/releases
145151
146152
// Sometimes we want to use lints which were added after our MSRV.
147153
// `unknown_lints` is `warn` by default and we deny warnings in CI, so without

zerocopy-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
[package]
1010
edition = "2018"
1111
name = "zerocopy-derive"
12-
version = "0.7.29"
12+
version = "0.7.30"
1313
authors = ["Joshua Liebow-Feeser <joshlf@google.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)