about summary refs log tree commit diff
path: root/RELEASES.txt
AgeCommit message (Collapse)AuthorLines
2014-10-07Rename RELEASES.txt to RELEASES.md. It's markdown.Brian Anderson-1079/+0
2014-07-05Update RELEASES.txtPatrick Yevsukov-3/+3
Fix Typos
2014-06-30Updated release notes for 0.11.0Alex Crichton-0/+132
2014-05-01Fix a/an typosJorge Aparicio-1/+1
2014-04-02Minor adjustments to the 0.10 release notes.Huon Wilson-9/+17
Mention another lint, fix a typo, and rearrange some things.
2014-03-30Add draft 0.10 release notesAlex Crichton-0/+158
2014-03-07Explicitly write down 0.1 release date in RELEASES.txt, to confirm Rust's ↵Liigo Zhuang-2/+2
birthday.
2014-01-06More 0.9 release notesBrian Anderson-1/+12
2014-01-01Update RELEASES.txt for 0.9Brian Anderson-3/+149
2013-10-16remove the rusti commandDaniel Micay-0/+8
Closes #9818 Closes #9567 Closes #8924 Closes #8910 Closes #8392 Closes #7692 Closes #7499 Closes #7220
2013-09-250.8 will be in SeptemberBrian Anderson-2/+2
2013-09-23More 0.8 release notesBrian Anderson-0/+8
2013-09-22rustdoc: Out with the old, in with the newAlex Crichton-1/+2
Removes old rustdoc, moves rustdoc_ng into its place instead (plus drops the _ng suffix). Also shreds all reference to rustdoc_ng from the Makefile rules.
2013-09-21auto merge of #9374 : alexcrichton/rust/rustdoc-web, r=cmrbors-0/+1
This large commit implements and `html` output option for rustdoc_ng. The executable has been altered to be invoked as "rustdoc_ng html <crate>" and it will dump everything into the local "doc" directory. JSON can still be generated by changing 'html' to 'json'. This also fixes a number of bugs in rustdoc_ng relating to comment stripping, along with some other various issues that I found along the way. The `make doc` command has been altered to generate the new documentation into the `doc/ng/$(CRATE)` directories. Previews * http://www.contrib.andrew.cmu.edu/~acrichto/doc/std/ * http://www.contrib.andrew.cmu.edu/~acrichto/doc/extra/ Missing features * Different versions of documentation on the same page (all possibly indexed as well?) I think that this needs to be thought out before action is taken. It's an awesome idea, but it should be done carefully. * Source links are missing. This is a little dependent on getting versions working. In theory we should link back to github, but we should always link back to the exact version the documentation was generated from. * Integration with other tools. It would be awesome to have rustpkg-style inference of the package name and version so they don't have to be specified anywhere. Additionally, I should be able to build documentation for a pkgid, not necessarily a crate file. cc @cmr/@Seldaek
2013-09-20Implement a web backend for rustdoc_ngAlex Crichton-0/+1
This large commit implements and `html` output option for rustdoc_ng. The executable has been altered to be invoked as "rustdoc_ng html <crate>" and it will dump everything into the local "doc" directory. JSON can still be generated by changing 'html' to 'json'. This also fixes a number of bugs in rustdoc_ng relating to comment stripping, along with some other various issues that I found along the way. The `make doc` command has been altered to generate the new documentation into the `doc/ng/$(CRATE)` directories.
2013-09-20auto merge of #9349 : brson/rust/relnotes, r=thestingerbors-3/+4
2013-09-20Invert --cfg debug to --cfg ndebugAlex Crichton-2/+2
Many people will be very confused that their debug! statements aren't working when they first use rust only to learn that they should have been building with `--cfg debug` the entire time. This inverts the meaning of the flag to instead of enabling debug statements, now it disables debug statements. This way the default behavior is a bit more reasonable, and requires less end-user configuration. Furthermore, this turns on debug by default when building the rustc compiler.
2013-09-20Add a note about improved rustc perf to 0.8 relnotesBrian Anderson-0/+1
2013-09-20Fix spelling and phrasing in 0.8 release notesBrian Anderson-3/+3
2013-09-180.8 release notesBrian Anderson-0/+145
2013-06-30More 0.7 release notesBrian Anderson-30/+35
2013-06-27docs: Mention rustpkg in release notesTim Chevalier-0/+1
2013-06-26More 0.7 release notesBrian Anderson-8/+17
2013-06-24Implement the fixed output size versions of the SHA-2 digest functions.Palmer Cox-0/+1
2013-06-21Minor doc updates to reflect #[deriving(Zero)], and small release notes ↵Huon Wilson-5/+6
adjustments. The `extra::fileinput` module landed just after 0.6 was released, and there are many more derivable traits.
2013-06-21More 0.7 release notesBrian Anderson-2/+9
2013-06-16More 0.7 release notesBrian Anderson-8/+62
2013-06-13automated whitespace fixesDaniel Micay-1/+1
2013-06-13Add some 0.7 release notesBrian Anderson-3/+28
2013-05-03add gitattributes and fix whitespace issuesDaniel Micay-3/+3
2013-04-15update RELEASES.txtDaniel Micay-1/+13
2013-03-31Update RELEASES.txtLuqman Aden-1/+5
Fix typo and add fixed length vec changes.
2013-03-280.6 will be in AprilBrian Anderson-1/+1
2013-03-27auto merge of #5567 : jbclements/rust/release-note-macro-escape, r=thestingerbors-0/+2
2013-03-26added note about #[macro_escape]John Clements-0/+2
2013-03-26Update 0.6 release notesBrian Anderson-16/+17
2013-03-26add deriving changes to release notesAndrew Paseltiner-0/+3
2013-03-25RELEASES.txt: wrong tick-markGraydon Hoare-1/+1
2013-03-25RELEASES.txt: Mention asm!, add cset count and a hyphen.Graydon Hoare-3/+7
2013-03-22Edit release notes a bitTim Chevalier-9/+9
2013-03-13work on release notesDaniel Micay-6/+11
* make the changes regarding move semantics clearer * expand on the container work
2013-03-11Work on 0.6 release notesBrian Anderson-2/+79
2013-02-06`core::send_map` renamed to `core::hashmap`kud1ing-0/+6
Encountered this while trying to port rustsqlite to rust 0.6
2012-12-19Mention module/type namespace merge in release notesBrian Anderson-0/+3
2012-12-18Mention flatpipes in release notesBrian Anderson-0/+1
2012-12-18'trait constraints' -> 'trait inheritance'Brian Anderson-1/+1
2012-12-17~900 changes in 0.5Brian Anderson-1/+1
2012-12-17Mention license change in release notesBrian Anderson-3/+4
2012-12-16Mention priority queue in release notesBrian Anderson-0/+1
2012-12-14Use the term 'trait constraints' instead of 'inheritance' in release notesBrian Anderson-1/+1