Skip to content

Commit cbf6472

Browse files
Remove references to RUSTC_BOOTSTRAP in documentation (#28)
See https://internals.rust-lang.org/t/why-is-rustc-bootstrap-so-actively-discouraged/24123/6 for rationale
1 parent f772088 commit cbf6472

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "try_v2"
3-
version = "0.3.2"
3+
version = "0.3.3"
44
edition = "2024"
55
readme = "README.md"
66
description = "Provides a derive macro for `Try` ([try_trait_v2](https://rust-lang.github.io/rfcs/3058-try-trait-v2.html))"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ and back `where E: From::from<Self<!>>`
77

88
## Requires
99

10-
- nightly or `RUSTC_BOOTSTRAP = 1`
10+
- nightly
1111
- `#![feature(never_type)]`
1212
- `#![feature(try_trait_v2)]`
1313

@@ -64,7 +64,7 @@ See the [full documentation](https://docs.rs/try_v2/latest/try_v2/) for specific
6464

6565
## MSRV
6666

67-
1.85.1 if you are walking the grey-zone between stable and nightly via `RUSTC_BOOTSTRAP`
67+
1.85.1, in case you are using a fixed version of nightly just to get access to specific unstable features.
6868

6969
## Currently untested (may work, may not ...)
7070

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
//! and back `where E: From::from<Self<!>>`
1313
//!
1414
//! ## Requires:
15-
//! - nightly or `RUSTC_BOOTSTRAP = 1`
15+
//! - nightly
1616
//! - `#![feature(never_type)]`
1717
//! - `#![feature(try_trait_v2)]`
1818
//!
@@ -66,7 +66,7 @@
6666
//! ```
6767
//!
6868
//! ## MSRV
69-
//! 1.85.1 if you are walking the grey-zone between stable and nightly via `RUSTC_BOOTSTRAP`
69+
//! 1.85.1, in case you are using a fixed version of nightly just to get access to specific unstable features.
7070
//!
7171
//! ## Currently untested (may work, may not ...):
7272
//! - `where` clauses

0 commit comments

Comments
 (0)