summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2021-08-25 14:23:03 +0000
committerbors <bors@rust-lang.org>2021-08-25 14:23:03 +0000
commit2cffe84529fb86a150c6848409d75aa96d237944 (patch)
treef19bc3264b6c67a216285e937e9b1fd2c7617d70
parentd16dfc4bcaed702f32a1c23efd295e07a18f7d34 (diff)
parent28a482bb8b2c2df65f743613e3cde13ff1074984 (diff)
downloadrust-libc-0.2.101.tar.gz
Auto merge of #2361 - hcsch:libc-0.2.101, r=Amanieu0.2.101
Bump to 0.2.101 New release to allow for usage of `strtof` introduced in #2358 for fuzzing of `hexf-parse` while comparing against `strtof` results.
-rw-r--r--Cargo.toml2
-rw-r--r--libc-test/Cargo.toml4
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 03dfb09db0..43ed571dcf 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "libc"
-version = "0.2.100"
+version = "0.2.101"
authors = ["The Rust Project Developers"]
license = "MIT OR Apache-2.0"
readme = "README.md"
diff --git a/libc-test/Cargo.toml b/libc-test/Cargo.toml
index 4566873572..b2453cec77 100644
--- a/libc-test/Cargo.toml
+++ b/libc-test/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "libc-test"
-version = "0.2.100"
+version = "0.2.101"
authors = ["The Rust Project Developers"]
license = "MIT OR Apache-2.0"
build = "build.rs"
@@ -12,7 +12,7 @@ A test crate for the libc crate.
[dependencies.libc]
path = ".."
-version = "0.2.100"
+version = "0.2.101"
default-features = false
[build-dependencies]