]> git.lizzy.rs Git - rust.git/blobdiff - RELEASES.md
rustc_infer: Remove unused dependency rustc_graphviz
[rust.git] / RELEASES.md
index da8333e6287ca0367b137fa2a702d8e369fe9af2..35e5627e61ff86f95f9547751ea938b656ccd1a5 100644 (file)
@@ -109,7 +109,11 @@ Compatibility Notes
   to rejecting hexadecimal IP addresses.][83652] The octal format can lead
   to confusion and potential security vulnerabilities and [is no
   longer recommended][ietf6943].
-
+- [The added `BITS` constant may conflict with external definitions.][85667]
+  In particular, this was known to be a problem in the `lexical-core` crate,
+  but they have published fixes for semantic versions 0.4 through 0.7. To
+  update this dependency alone, use `cargo update -p lexical-core`.
+- Incremental compilation remains off by default, unless one uses the `RUSTC_FORCE_INCREMENTAL=1` environment variable added in 1.52.1.
 
 Internal Only
 -------------
@@ -122,6 +126,7 @@ related tools.
 - [rustdoc: Only look at blanket impls in `get_blanket_impls`][83681]
 - [Rework rustdoc const type][82873]
 
+[85667]: https://github.com/rust-lang/rust/pull/85667
 [83386]: https://github.com/rust-lang/rust/pull/83386
 [82771]: https://github.com/rust-lang/rust/pull/82771
 [84147]: https://github.com/rust-lang/rust/pull/84147
@@ -364,7 +369,7 @@ Language
 --------
 - [You can now parameterize items such as functions, traits, and `struct`s by constant
   values in addition to by types and lifetimes.][79135] Also known as "const generics"
-  E.g. you can now write the following. Note: Only values of primitive integers, 
+  E.g. you can now write the following. Note: Only values of primitive integers,
   `bool`, or `char` types are currently permitted.
   ```rust
   struct GenericArray<T, const LENGTH: usize> {
@@ -1744,6 +1749,7 @@ Language
 - [You can now use `#[repr(transparent)]` on univariant `enum`s.][68122] Meaning
   that you can create an enum that has the exact layout and ABI of the type
   it contains.
+- [You can now use outer attribute procedural macros on inline modules.][64273]  
 - [There are some *syntax-only* changes:][67131]
    - `default` is syntactically allowed before items in `trait` definitions.
    - Items in `impl`s (i.e. `const`s, `type`s, and `fn`s) may syntactically
@@ -1805,6 +1811,7 @@ Compatibility Notes
 [67935]: https://github.com/rust-lang/rust/pull/67935/
 [68339]: https://github.com/rust-lang/rust/pull/68339/
 [68122]: https://github.com/rust-lang/rust/pull/68122/
+[64273]: https://github.com/rust-lang/rust/pull/64273/
 [67712]: https://github.com/rust-lang/rust/pull/67712/
 [67887]: https://github.com/rust-lang/rust/pull/67887/
 [67131]: https://github.com/rust-lang/rust/pull/67131/