From a92ebd25bd80985a158cd52dfa3431cd640ffc99 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Tue, 5 Nov 2019 20:41:38 +0900 Subject: [PATCH] Add compatibility note to readmes To bump MSRV is considered a breaking change. --- README.md | 4 ++++ crossbeam-channel/README.md | 4 ++++ crossbeam-deque/README.md | 4 ++++ crossbeam-epoch/README.md | 4 ++++ crossbeam-queue/README.md | 2 +- crossbeam-skiplist/README.md | 4 ++++ crossbeam-utils/README.md | 4 ++++ 7 files changed, 25 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index fab488d1a..fdf42feda 100644 --- a/README.md +++ b/README.md @@ -96,6 +96,10 @@ Next, add this to your crate: extern crate crossbeam; ``` +## Compatibility + +The minimum supported Rust version is 1.28. Any change to this is considered a breaking change. + ## Contributing Crossbeam welcomes contribution from everyone in the form of suggestions, bug reports, diff --git a/crossbeam-channel/README.md b/crossbeam-channel/README.md index a5187fca5..3fd86953a 100644 --- a/crossbeam-channel/README.md +++ b/crossbeam-channel/README.md @@ -51,6 +51,10 @@ Next, add this to your crate: extern crate crossbeam_channel; ``` +## Compatibility + +The minimum supported Rust version is 1.28. Any change to this is considered a breaking change. + ## License Licensed under either of diff --git a/crossbeam-deque/README.md b/crossbeam-deque/README.md index 56fdb3978..a5ef93a92 100644 --- a/crossbeam-deque/README.md +++ b/crossbeam-deque/README.md @@ -30,6 +30,10 @@ Next, add this to your crate: extern crate crossbeam_deque; ``` +## Compatibility + +The minimum supported Rust version is 1.28. Any change to this is considered a breaking change. + ## License Licensed under either of diff --git a/crossbeam-epoch/README.md b/crossbeam-epoch/README.md index baa185110..0c03f9819 100644 --- a/crossbeam-epoch/README.md +++ b/crossbeam-epoch/README.md @@ -37,6 +37,10 @@ Next, add this to your crate: extern crate crossbeam_epoch as epoch; ``` +## Compatibility + +The minimum supported Rust version is 1.28. Any change to this is considered a breaking change. + ## License Licensed under either of diff --git a/crossbeam-queue/README.md b/crossbeam-queue/README.md index 292989a88..fc2ca57bc 100644 --- a/crossbeam-queue/README.md +++ b/crossbeam-queue/README.md @@ -37,7 +37,7 @@ extern crate crossbeam_queue; ## Compatibility -The minimum supported Rust version is 1.28. +The minimum supported Rust version is 1.28. Any change to this is considered a breaking change. ## License diff --git a/crossbeam-skiplist/README.md b/crossbeam-skiplist/README.md index b870ad8bf..7b6e4e76f 100644 --- a/crossbeam-skiplist/README.md +++ b/crossbeam-skiplist/README.md @@ -33,6 +33,10 @@ extern crate crossbeam_skiplist; ``` --> +## Compatibility + +The minimum supported Rust version is 1.28. Any change to this is considered a breaking change. + ## License Licensed under either of diff --git a/crossbeam-utils/README.md b/crossbeam-utils/README.md index 640575189..24e070782 100644 --- a/crossbeam-utils/README.md +++ b/crossbeam-utils/README.md @@ -57,6 +57,10 @@ Next, add this to your crate: extern crate crossbeam_utils; ``` +## Compatibility + +The minimum supported Rust version is 1.28. Any change to this is considered a breaking change. + ## License Licensed under either of