summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2021-03-23 01:36:25 +0000
committerbors <bors@rust-lang.org>2021-03-23 01:36:25 +0000
commitbd7e0522f7631a0be106fa3ea3f6f6d8ad514b66 (patch)
tree658cdc269b8b2624a74be3a0f167a9cb20113963
parentac935822f62625d08b33e2a56c20e6f24dc575ef (diff)
parent52956ae8f8395d69af59f1d3ad751b03c39d24db (diff)
downloadrust-libc-0.2.91.tar.gz
Auto merge of #2120 - JohnTitor:libc-0291, r=JohnTitor0.2.91
Bump to 0.2.91 I'm going to make a new release as requested by https://github.com/rust-lang/libc/pull/2119#issuecomment-804404607. r? `@ghost`
-rw-r--r--CONTRIBUTING.md6
-rw-r--r--Cargo.toml2
-rw-r--r--libc-test/Cargo.toml4
3 files changed, 6 insertions, 6 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 1acc71d9ca..5d52cad7fc 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -69,11 +69,11 @@ platform in this crate, the next step is to get that sweet, sweet usage from
crates.io! The only next step is to bump the version of libc and then publish
it. If you'd like to get a release out ASAP you can follow these steps:
-1. Increment the patch version number in `Cargo.toml`.
-1. Send a PR to this repository. It should [look like this][example], but it'd
+1. Increment the patch version number in `Cargo.toml` and `libc-test/Cargo.toml`.
+1. Send a PR to this repository. It should [look like this][example-pr], but it'd
also be nice to fill out the description with a small rationale for the
release (any rationale is ok though!)
1. Once merged, the release will be tagged and published by one of the libc crate
maintainers.
-[example]: https://github.com/rust-lang/libc/pull/583
+[example-pr]: https://github.com/rust-lang/libc/pull/2120
diff --git a/Cargo.toml b/Cargo.toml
index c60d5f2ab5..0c4443577d 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "libc"
-version = "0.2.90"
+version = "0.2.91"
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 69f06fe360..0fc3576206 100644
--- a/libc-test/Cargo.toml
+++ b/libc-test/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "libc-test"
-version = "0.2.90"
+version = "0.2.91"
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.88"
+version = "0.2.91"
default-features = false
[build-dependencies]