Skip to content

Commit d0049d9

Browse files
authored
Version 0.6.9 - remove deprecated doc_auto_cfg feature. (#97)
1 parent 3fd5e74 commit d0049d9

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ members = [
66
[package]
77
name = "bitcode"
88
authors = [ "Cai Bear", "Finn Bear" ]
9-
version = "0.6.8"
9+
version = "0.6.9"
1010
edition = "2021"
1111
rust-version = "1.70"
1212
license = "MIT OR Apache-2.0"
@@ -16,7 +16,7 @@ exclude = ["fuzz/"]
1616

1717
[dependencies]
1818
arrayvec = { version = "0.7", default-features = false, optional = true }
19-
bitcode_derive = { version = "=0.6.8", path = "./bitcode_derive", optional = true }
19+
bitcode_derive = { version = "=0.6.9", path = "./bitcode_derive", optional = true }
2020
bytemuck = { version = "1.14", features = [ "min_const_generics", "must_cast" ] }
2121
glam = { version = ">=0.21", default-features = false, optional = true }
2222
rust_decimal = { version = "1.36", default-features = false, optional = true }

bitcode_derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "bitcode_derive"
33
authors = [ "Cai Bear", "Finn Bear" ]
4-
version = "0.6.8"
4+
version = "0.6.9"
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/SoftbearStudios/bitcode/"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#![allow(clippy::items_after_test_module, clippy::blocks_in_if_conditions)]
22
#![warn(clippy::semicolon_if_nothing_returned)]
3-
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
3+
#![cfg_attr(docsrs, feature(doc_cfg))]
44
#![cfg_attr(test, feature(test))]
55
#![cfg_attr(not(feature = "std"), no_std)]
66
#![doc = include_str!("../README.md")]

0 commit comments

Comments
 (0)