about summary refs log tree commit diff
path: root/RELEASES.md
AgeCommit message (Collapse)AuthorLines
2025-09-18Include patch in release notesMark Rousskov-2/+2
This should fix triagebot publication of the GitHub release on merge.
2025-09-15Add relnotes 1.90Boxy Uwu-0/+126
2025-08-19Fix some doc typosStefan Schindler-1/+1
2025-08-06Add a few missed entriesBoxy-2/+3
2025-08-04Update RELEASES.mdBoxy-1/+1
Co-authored-by: alexey semenyuk <alexsemenyuk88@gmail.com>
2025-08-04Update RELEASES.mdBoxy-1/+1
Co-authored-by: alexey semenyuk <alexsemenyuk88@gmail.com>
2025-07-26Add release notes for 1.89.0Josh Stone-0/+136
2025-06-26Rollup merge of #143059 - jieyouxu:slice-as-chunks, r=cuviperMichael Goulet-2/+10
Fix 1.88 relnotes - Use stable std links for `impl Default for {*const,*mut} T` - Add missing relnotes for https://github.com/rust-lang/rust/pull/139656 ```rs impl [T] { const fn as_chunks<const N: usize>(&self) -> (&[[T; N]], &[T]); const fn as_rchunks<const N: usize>(&self) -> (&[T], &[[T; N]]); const unsafe fn as_chunks_unchecked<const N: usize>(&self) -> &[[T; N]]; const fn as_chunks_mut<const N: usize>(&mut self) -> (&mut [[T; N]], &mut [T]); const fn as_rchunks_mut<const N: usize>(&mut self) -> (&mut [T], &mut [[T; N]]); const unsafe fn as_chunks_unchecked_mut<const N: usize>(&mut self) -> &mut [[T; N]]; } ``` - Add missing `mod ffi::c_str` and `hint::select_unpredictable` r? `@cuviper`
2025-06-27Add more missing APIs, and minor fixesJieyou Xu-6/+8
Co-authored-by: Josh Stone <cuviper@gmail.com>
2025-06-26Add missing stabilized slice chunk methodsJieyou Xu-0/+6
2025-06-26Use stable std linksJieyou Xu-2/+2
2025-06-26Expand const-stabilized API linksJieyou Xu-2/+6
2025-06-22Indicate change is coming in the next release.Mark Rousskov-1/+1
Co-authored-by: 许杰友 Jieyou Xu (Joe) <39484203+jieyouxu@users.noreply.github.com>
2025-06-211.88.0 release notesMark Rousskov-0/+100
2025-05-10Rollup merge of #140879 - pthariensflame:patch-1, r=pietroalbiniMatthias Krüger-1/+1
1.87.0 release notes: remove nonsensical `~` operator There is no `~` unary prefix operator, and it definitely shouldn't be in the release notes for a feature whose introducing PR doesn't test for it (because it doesn't exist). Also fix an unnecessary `}` on the same line. r? ``@pietroalbini``
2025-05-09RELEASES.md: fix unbalanced and unneeded `}`Laine Taffin Altman-1/+1
2025-05-09RELEASES.md: fix nonsensical ~ operatorLaine Taffin Altman-1/+1
There is no `~` unary prefix operator, and it definitely shouldn't be in the release notes for a feature whose introducing PR doesn't test for it (because it doesn't exist).
2025-05-09update wordingPietro Albini-1/+1
2025-05-09update links to point to stablePietro Albini-73/+73
2025-05-09fix new apis being marked as becoming const this releasePietro Albini-5/+5
2025-05-08Add release notes for 1.87.0Boxy-0/+166
2025-03-30Apply suggestions from code reviewJosh Stone-3/+4
Co-authored-by: Mark Rousskov <mark.simulacrum@gmail.com> Co-authored-by: alexey semenyuk <alexsemenyuk88@gmail.com>
2025-03-26Add release notes for 1.86.0Josh Stone-0/+122
2025-03-22Clarify "Windows 1607"Josh Stone-1/+1
2025-03-18Add release notes for 1.85.1Josh Stone-0/+11
2025-03-17change config.toml to bootstrap.toml for bootstrap modulebit-aloo-2/+2
2025-02-16Re-add missing empty lines in the releases notesUrgau-2/+6
2025-02-15Add relnotes for 1.85Mark Rousskov-0/+127
2025-02-01Rollup merge of #136266 - cyrgani:patch-1, r=Mark-SimulacrumMatthias Krüger-2/+1
fix broken release notes id
2025-01-29fix broken release notes idcyrgani-2/+1
2025-01-29Add release notes for 1.84.1Josh Stone-0/+15
2025-01-23update release notesPietro Albini-0/+1
2025-01-15Add the concrete syntax for precise capturing to 1.82 release notes.Kevin Reid-1/+1
This will make the note findable by searching for the “use” keyword, and skimming. Many other language additions mention their syntax in the release notes, but this one only used the name of the feature.
2025-01-12Rollup merge of #135266 - kadiwa4:no_emsdk_update, r=Mark-SimulacrumMatthias Krüger-2/+1
Remove emsdk version update from 1.84.0 relnotes See [this comment](https://github.com/rust-lang/rust/issues/131467#issuecomment-2529314603). The reproducer in that comment does indeed show that rustup's `rust-std` component is still compiled with the old emscripten ABI because libc's config flag `emscripten_new_stat_abi` is not set. #131533 presumably had no effect because the wrong CI file was modified. So nothing has changed since 1.83.0. The PR author (workingjubilee) is currently on vacation. Also the issue #131467 should be reopened.
2025-01-08Add Pin::as_deref_mut to relnotesNoa-0/+1
2025-01-08remove emsdk update from relnotesKalle Wachsmuth-2/+1
2025-01-08fix release notes linkPietro Albini-1/+1
2025-01-06last feedback itemsPietro Albini-0/+2
2025-01-03Stabilized APIsBoxy-39/+39
2025-01-02add relnotesBoxy-0/+114
2024-12-07Removed Unnecessary Spaces From RELEASES.mdrohit141914-4/+4
2024-11-28fix typo in RELEASES.mdSlanterns-1/+1
2024-11-22Also change an older `$integer` to `{integer}`Josh Stone-1/+1
2024-11-22Change `$float` to `{float}` in relnotesJosh Stone-16/+16
Co-authored-by: Urgau <3616612+Urgau@users.noreply.github.com>
2024-11-22Add an empty line to fix markdown quotingJosh Stone-0/+1
2024-11-22Reorder lang relnotesJosh Stone-3/+3
2024-11-22Update relnotes from suggestions and issues syncJosh Stone-23/+22
2024-11-21Add release notes for Rust 1.83.0Josh Stone-0/+232
2024-11-18RELEASES.md: Don't document unstable `--test-build-wrapper`Alona Enraght-Moony-7/+0
2024-10-22relnotes: fix stabilizations of `assume_init`Josh Stone-3/+3
Ref: https://github.com/rust-lang/blog.rust-lang.org/pull/1416