summary refs log tree commit diff
path: root/RELEASES.md
AgeCommit message (Collapse)AuthorLines
2016-04-08Release notes for 1.8Brian Anderson-0/+208
2016-02-27Reformat Part of 1.7 Release NotesPascal Hertleif-55/+47
- Use unordered nested list for stabilised APIs to improve readability - Add link to `u32::checked_neg` - Remove trailing back tick from BTreeMap line
2016-02-26Fix typo in release notesAmanieu d'Antras-2/+2
2016-02-16Fix links in release notes 1.7.0Wangshan Lu-4/+4
2016-01-29Update release notes for 1.7Brian Anderson-5/+204
2016-01-29Release notes for 1.6Brian Anderson-0/+153
2015-12-04Update RELEASES.md for 1.5Brian Anderson-1/+219
2015-11-04More relnotes tweaksBrian Anderson-2/+2
2015-10-29Address release notes feedbackBrian Anderson-8/+18
2015-10-271.4 release notesBrian Anderson-0/+169
2015-09-18Add 1.3 release datekud1ing-1/+1
As of http://blog.rust-lang.org/2015/09/17/Rust-1.3.html
2015-09-16corrected link to HasherDominik Inführ-1/+1
2015-09-151.3 release notesBrian Anderson-1/+207
2015-09-11Add release dates for all releasesBrian Anderson-14/+14
2015-09-08Add release days, fixes #28228kud1ing-3/+3
2015-08-09Use https URLs to refer to rust-lang.org where appropriate.Eli Friedman-55/+55
Also fixes a few outdated links.
2015-08-03small fix in RELEASESSteve Klabnik-1/+1
this grammar isn't correct
2015-07-30More 1.2 relnotesBrian Anderson-3/+14
2015-07-14Mention that removal of `#[packed]` was a breaking change in 1.2Brian Anderson-1/+4
2015-07-09Update RELEASES.md for 1.2Brian Anderson-4/+133
2015-06-27Auto merge of #26579 - Techern:start-12-doc, r=brsonbors-0/+15
At the moment, it only mentions the fix to parallel codegen. I was going to add more, but I have to go for a while - If this isn't reviewed when I get back, I'll remove it and resubmit it after filling in more :)
2015-06-27Initial documentation for 1.2.0, uploading to test markdownCruz Julian Bishop-0/+15
2015-06-26Auto merge of #26568 - barosl:rel-notes-refs, r=alexcrichtonbors-9/+4
I found some typos in the upcoming 1.1 release note. I corrected them, but I wanted to go further. So I wrote a script that checks the integrity of the Markdown references, and ran it against `RELEASES.md`. This commit fixes some trivial cases, but also removes the following "unused" references: - [`Iterator::cloned`](http://doc.rust-lang.org/nightly/core/iter/trait.Iterator.html#method.cloned) - [`thread::scoped`](http://static.rust-lang.org/doc/master/std/thread/fn.scoped.html) - [`Debug` improvements](https://github.com/rust-lang/rfcs/blob/master/text/0640-debug-improvements.md) - [Rebalancing coherence.](https://github.com/rust-lang/rfcs/pull/1023) However, I think there's a possibility that these features might need to get descriptions as well. How do you feel about it?
2015-06-26Correct typos and remove unused references from RELEASES.mdBarosl Lee-9/+4
I found some typos in the upcoming 1.1 release note. I corrected them, but I wanted to go further. So I wrote a script that checks the integrity of the Markdown references, and ran it against `RELEASES.md`. This commit fixes some trivial cases, but also removes the following "unused" references: - [`Iterator::cloned`](http://doc.rust-lang.org/nightly/core/iter/trait.Iterator.html#method.cloned) - [`thread::scoped`](http://static.rust-lang.org/doc/master/std/thread/fn.scoped.html) - [`Debug` improvements](https://github.com/rust-lang/rfcs/blob/master/text/0640-debug-improvements.md) - [Rebalancing coherence.](https://github.com/rust-lang/rfcs/pull/1023) However, I think there's a possibility that these features might need to get descriptions as well. How do you feel about it?
2015-06-25relnotes: Fix error index link.Michael Sproul-5/+4
2015-06-18Update RELEASES.md for 1.1Brian Anderson-6/+101
2015-06-09std: Stabilize a number of new fs featuresAlex Crichton-0/+18
This commit stabilizes the following APIs, slating them all to be cherry-picked into the 1.1 release. * fs::FileType (and transitively the derived trait implementations) * fs::Metadata::file_type * fs::FileType::is_dir * fs::FileType::is_file * fs::FileType::is_symlink * fs::DirEntry::metadata * fs::DirEntry::file_type * fs::DirEntry::file_name * fs::set_permissions * fs::symlink_metadata * os::raw::{self, *} * os::{android, bitrig, linux, ...}::raw::{self, *} * os::{android, bitrig, linux, ...}::fs::MetadataExt * os::{android, bitrig, linux, ...}::fs::MetadataExt::as_raw_stat * os::unix::fs::PermissionsExt * os::unix::fs::PermissionsExt::mode * os::unix::fs::PermissionsExt::set_mode * os::unix::fs::PermissionsExt::from_mode * os::unix::fs::OpenOptionsExt * os::unix::fs::OpenOptionsExt::mode * os::unix::fs::DirEntryExt * os::unix::fs::DirEntryExt::ino * os::windows::fs::MetadataExt * os::windows::fs::MetadataExt::file_attributes * os::windows::fs::MetadataExt::creation_time * os::windows::fs::MetadataExt::last_access_time * os::windows::fs::MetadataExt::last_write_time * os::windows::fs::MetadataExt::file_size The `os::unix::fs::Metadata` structure was also removed entirely, moving all of its associated methods into the `os::unix::fs::MetadataExt` trait instead. The methods are all marked as `#[stable]` still. As some minor cleanup, some deprecated and unstable fs apis were also removed: * File::path * Metadata::accessed * Metadata::modified Features that were explicitly left unstable include: * fs::WalkDir - the semantics of this were not considered in the recent fs expansion RFC. * fs::DirBuilder - it's still not 100% clear if the naming is right here and if the set of functionality exposed is appropriate. * fs::canonicalize - the implementation on Windows here is specifically in question as it always returns a verbatim path. Additionally the Unix implementation is susceptible to buffer overflows on long paths unfortunately. * fs::PathExt - as this is just a convenience trait, it is not stabilized at this time. * fs::set_file_times - this funciton is still waiting on a time abstraction.
2015-05-19Fix a few typos in the releasesAustin Hellyer-4/+4
2015-05-19Rollup merge of #25562 - svetlyak40wt:patch-1, r=alexcrichtonManish Goregaokar-14/+27
That way old versions won't be a subsections of the 1.0.0 release.
2015-05-18Move all version headers to the same level.Alexander Artemenko-14/+27
That way old versions won't be a subsections of the 1.0.0 release.
2015-05-17typomdinger-1/+1
2015-05-11More authors updatesBrian Anderson-0/+2
2015-05-10Update AUTHORS.txt and RELEASES.md for 1.0Brian Anderson-76/+138
2015-04-02Tweak relese notes + rebase fixesAlex Crichton-2/+2
2015-04-01Add release notes for 1.0.0-betaAaron Turon-0/+99
2015-02-21Fix frow_raw/from_raw typoDenis Defreyne-1/+1
2015-02-18Update AUTHORS.txt and RELEASES.mdBrian Anderson-0/+99
2015-01-09Link to http://rustbyexample.com/kud1ing-1/+2
2015-01-08"The Rust Programming Language"Steve Klabnik-2/+5
This pulls all of our long-form documentation into a single document, nicknamed "the book" and formally titled "The Rust Programming Language." A few things motivated this change: * People knew of The Guide, but not the individual Guides. This merges them together, helping discoverability. * You can get all of Rust's longform documentation in one place, which is nice. * We now have rustbook in-tree, which can generate this kind of documentation. While its style is basic, the general idea is much better: a table of contents on the left-hand side. * Rather than a almost 10,000-line guide.md, there are now smaller files per section.
2015-01-06Sync -> SendBrian Anderson-1/+1
2015-01-06Merge pull request #25 from aturon/relnotes-updatesBrian Anderson-2/+7
Add int discussion, tweak wording
2015-01-06Add int discussion, tweak wordingAaron Turon-2/+7
2015-01-06Use a better reference for unboxed closuresBrian Anderson-1/+1
2015-01-06Soften pre-1.0 API stability commitment in relnotesBrian Anderson-1/+2
2015-01-06Little more relnotesBrian Anderson-3/+8
2015-01-06Add new authors, more relnotesBrian Anderson-1/+2
2015-01-06Address feedbackBrian Anderson-8/+15
2015-01-061.0.0-alpha release notesBrian Anderson-0/+163
2014-10-07More relnotes tweaks 0.12.0Brian Anderson-3/+3
2014-10-07Update per feedbackBrian Anderson-26/+52