Skip to content

Commit f4a6c55

Browse files
Release 0.8.0-alpha.9 (#1181)
1 parent 5f2478d commit f4a6c55

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-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.8.0-alpha.8"
18+
version = "0.8.0-alpha.9"
1919
authors = ["Joshua Liebow-Feeser <[email protected]>"]
2020
description = "Utilities for zero-copy parsing and serialization"
2121
categories = ["embedded", "encoding", "no-std::no-alloc", "parsing", "rust-patterns"]
@@ -66,13 +66,13 @@ simd-nightly = ["simd"]
6666
__internal_use_only_features_that_work_on_stable = ["alloc", "derive", "simd"]
6767

6868
[dependencies]
69-
zerocopy-derive = { version = "=0.8.0-alpha.8", path = "zerocopy-derive", optional = true }
69+
zerocopy-derive = { version = "=0.8.0-alpha.9", path = "zerocopy-derive", optional = true }
7070

7171
# The "associated proc macro pattern" ensures that the versions of zerocopy and
7272
# zerocopy-derive remain equal, even if the 'derive' feature isn't used.
7373
# See: https://github.com/matklad/macro-dep-test
7474
[target.'cfg(any())'.dependencies]
75-
zerocopy-derive = { version = "=0.8.0-alpha.8", path = "zerocopy-derive" }
75+
zerocopy-derive = { version = "=0.8.0-alpha.9", path = "zerocopy-derive" }
7676

7777
[dev-dependencies]
7878
assert_matches = "1.5"
@@ -91,6 +91,6 @@ testutil = { path = "testutil" }
9191
# CI test failures.
9292
trybuild = { version = "=1.0.89", features = ["diff"] }
9393
# In tests, unlike in production, zerocopy-derive is not optional
94-
zerocopy-derive = { version = "=0.8.0-alpha.8", path = "zerocopy-derive" }
94+
zerocopy-derive = { version = "=0.8.0-alpha.9", path = "zerocopy-derive" }
9595
# TODO(#381) Remove this dependency once we have our own layout gadgets.
9696
elain = "0.3.0"

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.8.0-alpha.8"
12+
version = "0.8.0-alpha.9"
1313
authors = ["Joshua Liebow-Feeser <[email protected]>"]
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)