Skip to content

Commit 52e9131

Browse files
Release 0.8.0 (#1813)
1 parent 00b06c5 commit 52e9131

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.27"
18+
version = "0.8.0"
1919
authors = ["Joshua Liebow-Feeser <[email protected]>"]
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"]
@@ -77,13 +77,13 @@ std = ["alloc"]
7777
__internal_use_only_features_that_work_on_stable = ["alloc", "derive", "simd", "std"]
7878

7979
[dependencies]
80-
zerocopy-derive = { version = "=0.8.0-alpha.27", path = "zerocopy-derive", optional = true }
80+
zerocopy-derive = { version = "=0.8.0", path = "zerocopy-derive", optional = true }
8181

8282
# The "associated proc macro pattern" ensures that the versions of zerocopy and
8383
# zerocopy-derive remain equal, even if the 'derive' feature isn't used.
8484
# See: https://github.com/matklad/macro-dep-test
8585
[target.'cfg(any())'.dependencies]
86-
zerocopy-derive = { version = "=0.8.0-alpha.27", path = "zerocopy-derive" }
86+
zerocopy-derive = { version = "=0.8.0", path = "zerocopy-derive" }
8787

8888
[dev-dependencies]
8989
itertools = "0.11"
@@ -97,6 +97,6 @@ testutil = { path = "testutil" }
9797
# CI test failures.
9898
trybuild = { version = "=1.0.89", features = ["diff"] }
9999
# In tests, unlike in production, zerocopy-derive is not optional
100-
zerocopy-derive = { version = "=0.8.0-alpha.27", path = "zerocopy-derive" }
100+
zerocopy-derive = { version = "=0.8.0", path = "zerocopy-derive" }
101101
# TODO(#381) Remove this dependency once we have our own layout gadgets.
102102
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.27"
12+
version = "0.8.0"
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)