]> git.lizzy.rs Git - rust.git/blob - RELEASES.txt
Add test that `!` cannot be indexed
[rust.git] / RELEASES.txt
1 Version 0.11.0 (July 2014)
2 -------------------------
3
4   * ~1700 changes, numerous bugfixes
5
6   * Language
7     * ~[T] has been removed from the language. This type is superseded by
8       the Vec<T> type.
9     * ~str has been removed from the language. This type is superseded by
10       the String type.
11     * ~T has been removed from the language. This type is superseded by the
12       Box<T> type.
13     * @T has been removed from the language. This type is superseded by the
14       standard library's std::gc::Gc<T> type.
15     * Struct fields are now all private by default.
16     * Vector indices and shift amounts are both required to be a `uint`
17       instead of any integral type.
18     * Byte character, byte string, and raw byte string literals are now all
19       supported by prefixing the normal literal with a `b`.
20     * Multiple ABIs are no longer allowed in an ABI string
21     * The syntax for lifetimes on closures/procedures has been tweaked
22       slightly: `<'a>|A, B|: 'b + K -> T`
23     * Floating point modulus has been removed from the language; however it
24       is still provided by a library implementation.
25     * Private enum variants are now disallowed.
26     * The `priv` keyword has been removed from the language.
27     * A closure can no longer be invoked through a &-pointer.
28     * The `use foo, bar, baz;` syntax has been removed from the language.
29     * The transmute intrinsic no longer works on type parameters.
30     * Statics now allow blocks/items in their definition.
31     * Trait bounds are separated from objects with + instead of : now.
32     * Objects can no longer be read while they are mutably borrowed.
33     * The address of a static is now marked as insignificant unless the
34       #[inline(never)] attribute is placed it.
35     * The #[unsafe_destructor] attribute is now behind a feature gate.
36     * Struct literals are no longer allowed in ambiguous positions such as
37       if, while, match, and for..in.
38     * Declaration of lang items and intrinsics are now feature-gated by
39       default.
40     * Integral literals no longer default to `int`, and floating point
41       literals no longer default to `f64`. Literals must be suffixed with an
42       appropriate type if inference cannot determine the type of the
43       literal.
44     * The Box<T> type is no longer implicitly borrowed to &mut T.
45     * Procedures are now required to not capture borrowed references.
46
47   * Libraries
48     * The standard library is now a "facade" over a number of underlying
49       libraries. This means that development on the standard library should
50       be speeder due to smaller crates, as well as a clearer line between
51       all dependencies.
52     * A new library, libcore, lives under the standard library's facade
53       which is Rust's "0-assumption" library, suitable for embedded and
54       kernel development for example.
55     * A regex crate has been added to the standard distribution. This crate
56       includes statically compiled regular expressions.
57     * The unwrap/unwrap_err methods on Result require a Show bound for
58       better error messages.
59     * The return types of the std::comm primitives have been centralized
60       around the Result type.
61     * A number of I/O primitives have gained the ability to time out their
62       operations.
63     * A number of I/O primitives have gained the ability to close their
64       reading/writing halves to cancel pending operations.
65     * Reverse iterator methods have been removed in favor of `rev()` on
66       their forward-iteration counterparts.
67     * A bitflags! macro has been added to enable easy interop with C and
68       management of bit flags.
69     * A debug_assert! macro is now provided which is disabled when
70       `--cfg ndebug` is passed to the compiler.
71     * A graphviz crate has been added for creating .dot files.
72     * The std::cast module has been migrated into std::mem.
73     * The std::local_data api has been migrated from freestanding functions
74       to being based on methods.
75     * The Pod trait has been renamed to Copy.
76     * jemalloc has been added as the default allocator for types.
77     * The API for allocating memory has been changed to use proper alignment
78       and sized deallocation
79     * Connecting a TcpStream or binding a TcpListener is now based on a
80       string address and a u16 port. This allows connecting to a hostname as
81       opposed to an IP.
82     * The Reader trait now contains a core method, read_at_least(), which
83       correctly handles many repeated 0-length reads.
84     * The process-spawning API is now centered around a builder-style
85       Command struct.
86     * The :? printing qualifier has been moved from the standard library to
87       an external libdebug crate.
88     * Eq/Ord have been renamed to PartialEq/PartialOrd. TotalEq/TotalOrd
89       have been renamed to Eq/Ord.
90     * The select/plural methods have been removed from format!. The escapes
91       for { and } have also changed from \{ and \} to {{ and }},
92       respectively.
93     * The TaskBuilder API has been re-worked to be a true builder, and
94       extension traits for spawning native/green tasks have been added.
95
96   * Tooling
97     * All breaking changes to the language or libraries now have their
98       commit message annotated with `[breaking-change]` to allow for easy
99       discovery of breaking changes.
100     * The compiler will now try to suggest how to annotate lifetimes if a
101       lifetime-related error occurs.
102     * Debug info continues to be improved greatly with general bug fixes and
103       better support for situations like link time optimization (LTO).
104     * Usage of syntax extensions when cross-compiling has been fixed.
105     * Functionality equivalent to GCC & Clang's -ffunction-sections,
106       -fdata-sections and --gc-sections has been enabled by default
107     * The compiler is now stricter about where it will load module files
108       from when a module is declared via `mod foo;`.
109     * The #[phase(syntax)] attribute has been renamed to #[phase(plugin)].
110       Syntax extensions are now discovered via a "plugin registrar" type
111       which will be extended in the future to other various plugins.
112     * Lints have been restructured to allow for dynamically loadable lints.
113     * A number of rustdoc improvements:
114       * The HTML output has been visually redesigned.
115       * Markdown is now powered by hoedown instead of sundown.
116       * Searching heuristics have been greatly improved.
117       * The search index has been reduced in size by a great amount.
118       * Cross-crate documentation via `pub use` has been greatly improved.
119       * Primitive types are now hyperlinked and documented.
120     * Documentation has been moved from static.rust-lang.org/doc to
121       doc.rust-lang.org
122     * A new sandbox, play.rust-lang.org, is available for running and
123       sharing rust code examples on-line.
124     * Unused attributes are now more robustly warned about.
125     * The dead_code lint now warns about unused struct fields.
126     * Cross-compiling to iOS is now supported.
127     * Cross-compiling to mipsel is now supported.
128     * Stability attributes are now inherited by default and no longer apply
129       to intra-crate usage, only inter-crate usage.
130     * Error message related to non-exhaustive match expressions have been
131       greatly improved.
132
133 Version 0.10 (April 2014)
134 -------------------------
135
136   * ~1500 changes, numerous bugfixes
137
138   * Language
139     * A new RFC process is now in place for modifying the language.
140     * Patterns with `@`-pointers have been removed from the language.
141     * Patterns with unique vectors (`~[T]`) have been removed from the
142       language.
143     * Patterns with unique strings (`~str`) have been removed from the
144       language.
145     * `@str` has been removed from the language.
146     * `@[T]` has been removed from the language.
147     * `@self` has been removed from the language.
148     * `@Trait` has been removed from the language.
149     * Headers on `~` allocations which contain `@` boxes inside the type for
150       reference counting have been removed.
151     * The semantics around the lifetimes of temporary expressions have changed,
152       see #3511 and #11585 for more information.
153     * Cross-crate syntax extensions are now possible, but feature gated. See
154       #11151 for more information. This includes both `macro_rules!` macros as
155       well as syntax extensions such as `format!`.
156     * New lint modes have been added, and older ones have been turned on to be
157       warn-by-default.
158       * Unnecessary parentheses
159       * Uppercase statics
160       * Camel Case types
161       * Uppercase variables
162       * Publicly visible private types
163       * `#[deriving]` with raw pointers
164     * Unsafe functions can no longer be coerced to closures.
165     * Various obscure macros such as `log_syntax!` are now behind feature gates.
166     * The `#[simd]` attribute is now behind a feature gate.
167     * Visibility is no longer allowed on `extern crate` statements, and
168       unnecessary visibility (`priv`) is no longer allowed on `use` statements.
169     * Trailing commas are now allowed in argument lists and tuple patterns.
170     * The `do` keyword has been removed, it is now a reserved keyword.
171     * Default type parameters have been implemented, but are feature gated.
172     * Borrowed variables through captures in closures are now considered soundly.
173     * `extern mod` is now `extern crate`
174     * The `Freeze` trait has been removed.
175     * The `Share` trait has been added for types that can be shared among
176       threads.
177     * Labels in macros are now hygienic.
178     * Expression/statement macro invocations can be delimited with `{}` now.
179     * Treatment of types allowed in `static mut` locations has been tweaked.
180     * The `*` and `.` operators are now overloadable through the `Deref` and
181       `DerefMut` traits.
182     * `~Trait` and `proc` no longer have `Send` bounds by default.
183     * Partial type hints are now supported with the `_` type marker.
184     * An `Unsafe` type was introduced for interior mutability. It is now
185       considered undefined to transmute from `&T` to `&mut T` without using the
186       `Unsafe` type.
187     * The #[linkage] attribute was implemented for extern statics/functions.
188     * The inner attribute syntax has changed from `#[foo];` to `#![foo]`.
189     * `Pod` was renamed to `Copy`.
190
191   * Libraries
192     * The `libextra` library has been removed. It has now been decomposed into
193       component libraries with smaller and more focused nuggets of
194       functionality. The full list of libraries can be found on the
195       documentation index page.
196     * std: `std::condition` has been removed. All I/O errors are now propagated
197       through the `Result` type. In order to assist with error handling, a
198       `try!` macro for unwrapping errors with an early return and a lint for
199       unused results has been added. See #12039 for more information.
200     * std: The `vec` module has been renamed to `slice`.
201     * std: A new vector type, `Vec<T>`, has been added in preparation for DST.
202       This will become the only growable vector in the future.
203     * std: `std::io` now has more public-reexports. Types such as `BufferedReader`
204       are now found at `std::io::BufferedReader` instead of
205       `std::io::buffered::BufferedReader`.
206     * std: `print` and `println` are no longer in the prelude, the `print!` and
207       `println!` macros are intended to be used instead.
208     * std: `Rc` now has a `Weak` pointer for breaking cycles, and it no longer
209       attempts to statically prevent cycles.
210     * std: The standard distribution is adopting the policy of pushing failure
211       to the user rather than failing in libraries. Many functions (such as
212       `slice::last()`) now return `Option<T>` instead of `T` + failing.
213     * std: `fmt::Default` has been renamed to `fmt::Show`, and it now has a new
214       deriving mode: `#[deriving(Show)]`.
215     * std: `ToStr` is now implemented for all types implementing `Show`.
216     * std: The formatting trait methods now take `&self` instead of `&T`
217     * std: The `invert()` method on iterators has been renamed to `rev()`
218     * std: `std::num` has seen a reduction in the genericity of its traits,
219       consolidating functionality into a few core traits.
220     * std: Backtraces are now printed on task failure if the environment
221       variable `RUST_BACKTRACE` is present.
222     * std: Naming conventions for iterators have been standardized. More details
223       can be found on the wiki's style guide.
224     * std: `eof()` has been removed from the `Reader` trait. Specific types may
225       still implement the function.
226     * std: Networking types are now cloneable to allow simultaneous reads/writes.
227     * std: `assert_approx_eq!` has been removed
228     * std: The `e` and `E` formatting specifiers for floats have been added to
229       print them in exponential notation.
230     * std: The `Times` trait has been removed
231     * std: Indications of variance and opting out of builtin bounds is done
232       through marker types in `std::kinds::marker` now
233     * std: `hash` has been rewritten, `IterBytes` has been removed, and
234       `#[deriving(Hash)]` is now possible.
235     * std: `SharedChan` has been removed, `Sender` is now cloneable.
236     * std: `Chan` and `Port` were renamed to `Sender` and `Receiver`.
237     * std: `Chan::new` is now `channel()`.
238     * std: A new synchronous channel type has been implemented.
239     * std: A `select!` macro is now provided for selecting over `Receiver`s.
240     * std: `hashmap` and `trie` have been moved to `libcollections`
241     * std: `run` has been rolled into `io::process`
242     * std: `assert_eq!` now uses `{}` instead of `{:?}`
243     * std: The equality and comparison traits have seen some reorganization.
244     * std: `rand` has moved to `librand`.
245     * std: `to_{lower,upper}case` has been implemented for `char`.
246     * std: Logging has been moved to `liblog`.
247     * collections: `HashMap` has been rewritten for higher performance and less
248       memory usage.
249     * native: The default runtime is now `libnative`. If `libgreen` is desired,
250       it can be booted manually. The runtime guide has more information and
251       examples.
252     * native: All I/O functionality except signals has been implemented.
253     * green: Task spawning with `libgreen` has been optimized with stack caching
254       and various trimming of code.
255     * green: Tasks spawned by `libgreen` now have an unmapped guard page.
256     * sync: The `extra::sync` module has been updated to modern rust (and moved
257       to the `sync` library), tweaking and improving various interfaces while
258       dropping redundant functionality.
259     * sync: A new `Barrier` type has been added to the `sync` library.
260     * sync: An efficient mutex for native and green tasks has been implemented.
261     * serialize: The `base64` module has seen some improvement. It treats
262       newlines better, has non-string error values, and has seen general
263       cleanup.
264     * fourcc: A `fourcc!` macro was introduced
265     * hexfloat: A `hexfloat!` macro was implemented for specifying floats via a
266       hexadecimal literal.
267
268   * Tooling
269     * `rustpkg` has been deprecated and removed from the main repository. Its
270       replacement, `cargo`, is under development.
271     * Nightly builds of rust are now available
272     * The memory usage of rustc has been improved many times throughout this
273       release cycle.
274     * The build process supports disabling rpath support for the rustc binary
275       itself.
276     * Code generation has improved in some cases, giving more information to the
277       LLVM optimization passes to enable more extensive optimizations.
278     * Debuginfo compatibility with lldb on OSX has been restored.
279     * The master branch is now gated on an android bot, making building for
280       android much more reliable.
281     * Output flags have been centralized into one `--emit` flag.
282     * Crate type flags have been centralized into one `--crate-type` flag.
283     * Codegen flags have been consolidated behind a `-C` flag.
284     * Linking against outdated crates now has improved error messages.
285     * Error messages with lifetimes will often suggest how to annotate the
286       function to fix the error.
287     * Many more types are documented in the standard library, and new guides
288       were written.
289     * Many `rustdoc` improvements:
290       * code blocks are syntax highlighted.
291       * render standalone markdown files.
292       * the --test flag tests all code blocks by default.
293       * exported macros are displayed.
294       * reexported types have their documentation inlined at the location of the
295         first reexport.
296       * search works across crates that have been rendered to the same output
297         directory.
298
299 Version 0.9 (January 2014)
300 --------------------------
301
302    * ~1800 changes, numerous bugfixes
303
304    * Language
305       * The `float` type has been removed. Use `f32` or `f64` instead.
306       * A new facility for enabling experimental features (feature gating) has
307         been added, using the crate-level `#[feature(foo)]` attribute.
308       * Managed boxes (@) are now behind a feature gate
309         (`#[feature(managed_boxes)]`) in preparation for future removal. Use the
310         standard library's `Gc` or `Rc` types instead.
311       * `@mut` has been removed. Use `std::cell::{Cell, RefCell}` instead.
312       * Jumping back to the top of a loop is now done with `continue` instead of
313         `loop`.
314       * Strings can no longer be mutated through index assignment.
315       * Raw strings can be created via the basic `r"foo"` syntax or with matched
316         hash delimiters, as in `r###"foo"###`.
317       * `~fn` is now written `proc (args) -> retval { ... }` and may only be
318         called once.
319       * The `&fn` type is now written `|args| -> ret` to match the literal form.
320       * `@fn`s have been removed.
321       * `do` only works with procs in order to make it obvious what the cost
322         of `do` is.
323       * Single-element tuple-like structs can no longer be dereferenced to
324         obtain the inner value. A more comprehensive solution for overloading
325         the dereference operator will be provided in the future.
326       * The `#[link(...)]` attribute has been replaced with
327         `#[crate_id = "name#vers"]`.
328       * Empty `impl`s must be terminated with empty braces and may not be
329         terminated with a semicolon.
330       * Keywords are no longer allowed as lifetime names; the `self` lifetime
331         no longer has any special meaning.
332       * The old `fmt!` string formatting macro has been removed.
333       * `printf!` and `printfln!` (old-style formatting) removed in favor of
334         `print!` and `println!`.
335       * `mut` works in patterns now, as in `let (mut x, y) = (1, 2);`.
336       * The `extern mod foo (name = "bar")` syntax has been removed. Use
337         `extern mod foo = "bar"` instead.
338       * New reserved keywords: `alignof`, `offsetof`, `sizeof`.
339       * Macros can have attributes.
340       * Macros can expand to items with attributes.
341       * Macros can expand to multiple items.
342       * The `asm!` macro is feature-gated (`#[feature(asm)]`).
343       * Comments may be nested.
344       * Values automatically coerce to trait objects they implement, without
345         an explicit `as`.
346       * Enum discriminants are no longer an entire word but as small as needed to
347         contain all the variants. The `repr` attribute can be used to override
348         the discriminant size, as in `#[repr(int)]` for integer-sized, and
349         `#[repr(C)]` to match C enums.
350       * Non-string literals are not allowed in attributes (they never worked).
351       * The FFI now supports variadic functions.
352       * Octal numeric literals, as in `0o7777`.
353       * The `concat!` syntax extension performs compile-time string concatenation.
354       * The `#[fixed_stack_segment]` and `#[rust_stack]` attributes have been
355         removed as Rust no longer uses segmented stacks.
356       * Non-ascii identifiers are feature-gated (`#[feature(non_ascii_idents)]`).
357       * Ignoring all fields of an enum variant or tuple-struct is done with `..`,
358         not `*`; ignoring remaining fields of a struct is also done with `..`,
359         not `_`; ignoring a slice of a vector is done with `..`, not `.._`.
360       * `rustc` supports the "win64" calling convention via `extern "win64"`.
361       * `rustc` supports the "system" calling convention, which defaults to the
362         preferred convention for the target platform, "stdcall" on 32-bit Windows,
363         "C" elsewhere.
364       * The `type_overflow` lint (default: warn) checks literals for overflow.
365       * The `unsafe_block` lint (default: allow) checks for usage of `unsafe`.
366       * The `attribute_usage` lint (default: warn) warns about unknown
367         attributes.
368       * The `unknown_features` lint (default: warn) warns about unknown
369         feature gates.
370       * The `dead_code` lint (default: warn) checks for dead code.
371       * Rust libraries can be linked statically to one another
372       * `#[link_args]` is behind the `link_args` feature gate.
373       * Native libraries are now linked with `#[link(name = "foo")]`
374       * Native libraries can be statically linked to a rust crate
375         (`#[link(name = "foo", kind = "static")]`).
376       * Native OS X frameworks are now officially supported
377         (`#[link(name = "foo", kind = "framework")]`).
378       * The `#[thread_local]` attribute creates thread-local (not task-local)
379         variables. Currently behind the `thread_local` feature gate.
380       * The `return` keyword may be used in closures.
381       * Types that can be copied via a memcpy implement the `Pod` kind.
382       * The `cfg` attribute can now be used on struct fields and enum variants.
383
384    * Libraries
385       * std: The `option` and `result` API's have been overhauled to make them
386         simpler, more consistent, and more composable.
387       * std: The entire `std::io` module has been replaced with one that is
388         more comprehensive and that properly interfaces with the underlying
389         scheduler. File, TCP, UDP, Unix sockets, pipes, and timers are all
390         implemented.
391       * std: `io::util` contains a number of useful implementations of
392         `Reader` and `Writer`, including `NullReader`, `NullWriter`,
393         `ZeroReader`, `TeeReader`.
394       * std: The reference counted pointer type `extra::rc` moved into std.
395       * std: The `Gc` type in the `gc` module will replace `@` (it is currently
396         just a wrapper around it).
397       * std: The `Either` type has been removed.
398       * std: `fmt::Default` can be implemented for any type to provide default
399         formatting to the `format!` macro, as in `format!("{}", myfoo)`.
400       * std: The `rand` API continues to be tweaked.
401       * std: The `rust_begin_unwind` function, useful for inserting breakpoints
402         on failure in gdb, is now named `rust_fail`.
403       * std: The `each_key` and `each_value` methods on `HashMap` have been
404         replaced by the `keys` and `values` iterators.
405       * std: Functions dealing with type size and alignment have moved from the
406         `sys` module to the `mem` module.
407       * std: The `path` module was written and API changed.
408       * std: `str::from_utf8` has been changed to cast instead of allocate.
409       * std: `starts_with` and `ends_with` methods added to vectors via the
410         `ImmutableEqVector` trait, which is in the prelude.
411       * std: Vectors can be indexed with the `get_opt` method, which returns `None`
412         if the index is out of bounds.
413       * std: Task failure no longer propagates between tasks, as the model was
414         complex, expensive, and incompatible with thread-based tasks.
415       * std: The `Any` type can be used for dynamic typing.
416       * std: `~Any` can be passed to the `fail!` macro and retrieved via
417         `task::try`.
418       * std: Methods that produce iterators generally do not have an `_iter`
419         suffix now.
420       * std: `cell::Cell` and `cell::RefCell` can be used to introduce mutability
421         roots (mutable fields, etc.). Use instead of e.g. `@mut`.
422       * std: `util::ignore` renamed to `prelude::drop`.
423       * std: Slices have `sort` and `sort_by` methods via the `MutableVector`
424         trait.
425       * std: `vec::raw` has seen a lot of cleanup and API changes.
426       * std: The standard library no longer includes any C++ code, and very
427         minimal C, eliminating the dependency on libstdc++.
428       * std: Runtime scheduling and I/O functionality has been factored out into
429         extensible interfaces and is now implemented by two different crates:
430         libnative, for native threading and I/O; and libgreen, for green threading
431         and I/O. This paves the way for using the standard library in more limited
432         embedded environments.
433       * std: The `comm` module has been rewritten to be much faster, have a
434         simpler, more consistent API, and to work for both native and green
435         threading.
436       * std: All libuv dependencies have been moved into the rustuv crate.
437       * native: New implementations of runtime scheduling on top of OS threads.
438       * native: New native implementations of TCP, UDP, file I/O, process spawning,
439         and other I/O.
440       * green: The green thread scheduler and message passing types are almost
441         entirely lock-free.
442       * extra: The `flatpipes` module had bitrotted and was removed.
443       * extra: All crypto functions have been removed and Rust now has a policy of
444         not reimplementing crypto in the standard library. In the future crypto
445         will be provided by external crates with bindings to established libraries.
446       * extra: `c_vec` has been modernized.
447       * extra: The `sort` module has been removed. Use the `sort` method on
448         mutable slices.
449
450    * Tooling
451       * The `rust` and `rusti` commands have been removed, due to lack of
452         maintenance.
453       * `rustdoc` was completely rewritten.
454       * `rustdoc` can test code examples in documentation.
455       * `rustpkg` can test packages with the argument, 'test'.
456       * `rustpkg` supports arbitrary dependencies, including C libraries.
457       * `rustc`'s support for generating debug info is improved again.
458       * `rustc` has better error reporting for unbalanced delimiters.
459       * `rustc`'s JIT support was removed due to bitrot.
460       * Executables and static libraries can be built with LTO (-Z lto)
461       * `rustc` adds a `--dep-info` flag for communicating dependencies to
462         build tools.
463
464 Version 0.8 (September 2013)
465 --------------------------
466
467    * ~2200 changes, numerous bugfixes
468
469    * Language
470       * The `for` loop syntax has changed to work with the `Iterator` trait.
471       * At long last, unwinding works on Windows.
472       * Default methods are ready for use.
473       * Many trait inheritance bugs fixed.
474       * Owned and borrowed trait objects work more reliably.
475       * `copy` is no longer a keyword. It has been replaced by the `Clone` trait.
476       * rustc can omit emission of code for the `debug!` macro if it is passed
477         `--cfg ndebug`
478       * mod.rs is now "blessed". When loading `mod foo;`, rustc will now look
479         for foo.rs, then foo/mod.rs, and will generate an error when both are
480         present.
481       * Strings no longer contain trailing nulls. The new `std::c_str` module
482         provides new mechanisms for converting to C strings.
483       * The type of foreign functions is now `extern "C" fn` instead of `*u8'.
484       * The FFI has been overhauled such that foreign functions are called directly,
485         instead of through a stack-switching wrapper.
486       * Calling a foreign function must be done through a Rust function with the
487         `#[fixed_stack_segment]` attribute.
488       * The `externfn!` macro can be used to declare both a foreign function and
489         a `#[fixed_stack_segment]` wrapper at once.
490       * `pub` and `priv` modifiers on `extern` blocks are no longer parsed.
491       * `unsafe` is no longer allowed on extern fns - they are all unsafe.
492       * `priv` is disallowed everywhere except for struct fields and enum variants.
493       * `&T` (besides `&'static T`) is no longer allowed in `@T`.
494       * `ref` bindings in irrefutable patterns work correctly now.
495       * `char` is now prevented from containing invalid code points.
496       * Casting to `bool` is no longer allowed.
497       * `\0` is now accepted as an escape in chars and strings.
498       * `yield` is a reserved keyword.
499       * `typeof` is a reserved keyword.
500       * Crates may be imported by URL with `extern mod foo = "url";`.
501       * Explicit enum discriminants may be given as uints as in `enum E { V = 0u }`
502       * Static vectors can be initialized with repeating elements,
503         e.g. `static foo: [u8, .. 100]: [0, .. 100];`.
504       * Static structs can be initialized with functional record update,
505         e.g. `static foo: Foo = Foo { a: 5, .. bar };`.
506       * `cfg!` can be used to conditionally execute code based on the crate
507         configuration, similarly to `#[cfg(...)]`.
508       * The `unnecessary_qualification` lint detects unneeded module
509         prefixes (default: allow).
510       * Arithmetic operations have been implemented on the SIMD types in
511         `std::unstable::simd`.
512       * Exchange allocation headers were removed, reducing memory usage.
513       * `format!` implements a completely new, extensible, and higher-performance
514         string formatting system. It will replace `fmt!`.
515       * `print!` and `println!` write formatted strings (using the `format!`
516         extension) to stdout.
517       * `write!` and `writeln!` write formatted strings (using the `format!`
518         extension) to the new Writers in `std::rt::io`.
519       * The library section in which a function or static is placed may
520         be specified with `#[link_section = "..."]`.
521       * The `proto!` syntax extension for defining bounded message protocols
522         was removed.
523       * `macro_rules!` is hygienic for `let` declarations.
524       * The `#[export_name]` attribute specifies the name of a symbol.
525       * `unreachable!` can be used to indicate unreachable code, and fails
526         if executed.
527
528    * Libraries
529       * std: Transitioned to the new runtime, written in Rust.
530       * std: Added an experimental I/O library, `rt::io`, based on the new
531         runtime.
532       * std: A new generic `range` function was added to the prelude, replacing
533         `uint::range` and friends.
534       * std: `range_rev` no longer exists. Since range is an iterator it can be
535         reversed with `range(lo, hi).invert()`.
536       * std: The `chain` method on option renamed to `and_then`; `unwrap_or_default`
537         renamed to `unwrap_or`.
538       * std: The `iterator` module was renamed to `iter`.
539       * std: Integral types now support the `checked_add`, `checked_sub`, and
540         `checked_mul` operations for detecting overflow.
541       * std: Many methods in `str`, `vec`, `option, `result` were renamed for
542         consistency.
543       * std: Methods are standardizing on conventions for casting methods:
544         `to_foo` for copying, `into_foo` for moving, `as_foo` for temporary
545         and cheap casts.
546       * std: The `CString` type in `c_str` provides new ways to convert to and
547         from C strings.
548       * std: `DoubleEndedIterator` can yield elements in two directions.
549       * std: The `mut_split` method on vectors partitions an `&mut [T]` into
550         two splices.
551       * std: `str::from_bytes` renamed to `str::from_utf8`.
552       * std: `pop_opt` and `shift_opt` methods added to vectors.
553       * std: The task-local data interface no longer uses @, and keys are
554         no longer function pointers.
555       * std: The `swap_unwrap` method of `Option` renamed to `take_unwrap`.
556       * std: Added `SharedPort` to `comm`.
557       * std: `Eq` has a default method for `ne`; only `eq` is required
558         in implementations.
559       * std: `Ord` has default methods for `le`, `gt` and `ge`; only `lt`
560         is required in implementations.
561       * std: `is_utf8` performance is improved, impacting many string functions.
562       * std: `os::MemoryMap` provides cross-platform mmap.
563       * std: `ptr::offset` is now unsafe, but also more optimized. Offsets that
564         are not 'in-bounds' are considered undefined.
565       * std: Many freestanding functions in `vec` removed in favor of methods.
566       * std: Many freestanding functions on scalar types removed in favor of
567         methods.
568       * std: Many options to task builders were removed since they don't make
569         sense in the new scheduler design.
570       * std: More containers implement `FromIterator` so can be created by the
571         `collect` method.
572       * std: More complete atomic types in `unstable::atomics`.
573       * std: `comm::PortSet` removed.
574       * std: Mutating methods in the `Set` and `Map` traits have been moved into
575         the `MutableSet` and `MutableMap` traits. `Container::is_empty`,
576         `Map::contains_key`, `MutableMap::insert`, and `MutableMap::remove` have
577         default implementations.
578       * std: Various `from_str` functions were removed in favor of a generic
579         `from_str` which is available in the prelude.
580       * std: `util::unreachable` removed in favor of the `unreachable!` macro.
581       * extra: `dlist`, the doubly-linked list was modernized.
582       * extra: Added a `hex` module with `ToHex` and `FromHex` traits.
583       * extra: Added `glob` module, replacing `std::os::glob`.
584       * extra: `rope` was removed.
585       * extra: `deque` was renamed to `ringbuf`. `RingBuf` implements `Deque`.
586       * extra: `net`, and `timer` were removed. The experimental replacements
587         are `std::rt::io::net` and `std::rt::io::timer`.
588       * extra: Iterators implemented for `SmallIntMap`.
589       * extra: Iterators implemented for `Bitv` and `BitvSet`.
590       * extra: `SmallIntSet` removed. Use `BitvSet`.
591       * extra: Performance of JSON parsing greatly improved.
592       * extra: `semver` updated to SemVer 2.0.0.
593       * extra: `term` handles more terminals correctly.
594       * extra: `dbg` module removed.
595       * extra: `par` module removed.
596       * extra: `future` was cleaned up, with some method renames.
597       * extra: Most free functions in `getopts` were converted to methods.
598
599    * Other
600       * rustc's debug info generation (`-Z debug-info`) is greatly improved.
601       * rustc accepts `--target-cpu` to compile to a specific CPU architecture,
602         similarly to gcc's `--march` flag.
603       * rustc's performance compiling small crates is much better.
604       * rustpkg has received many improvements.
605       * rustpkg supports git tags as package IDs.
606       * rustpkg builds into target-specific directories so it can be used for
607         cross-compiling.
608       * The number of concurrent test tasks is controlled by the environment
609         variable RUST_TEST_TASKS.
610       * The test harness can now report metrics for benchmarks.
611       * All tools have man pages.
612       * Programs compiled with `--test` now support the `-h` and `--help` flags.
613       * The runtime uses jemalloc for allocations.
614       * Segmented stacks are temporarily disabled as part of the transition to
615         the new runtime. Stack overflows are possible!
616       * A new documentation backend, rustdoc_ng, is available for use. It is
617         still invoked through the normal `rustdoc` command.
618
619 Version 0.7 (July 2013)
620 -----------------------
621
622    * ~2000 changes, numerous bugfixes
623
624    * Language
625       * `impl`s no longer accept a visibility qualifier. Put them on methods
626         instead.
627       * The borrow checker has been rewritten with flow-sensitivity, fixing
628         many bugs and inconveniences.
629       * The `self` parameter no longer implicitly means `&'self self`,
630         and can be explicitly marked with a lifetime.
631       * Overloadable compound operators (`+=`, etc.) have been temporarily
632         removed due to bugs.
633       * The `for` loop protocol now requires `for`-iterators to return `bool`
634         so they compose better.
635       * The `Durable` trait is replaced with the `'static` bounds.
636       * Trait default methods work more often.
637       * Structs with the `#[packed]` attribute have byte alignment and
638         no padding between fields.
639       * Type parameters bound by `Copy` must now be copied explicitly with
640         the `copy` keyword.
641       * It is now illegal to move out of a dereferenced unsafe pointer.
642       * `Option<~T>` is now represented as a nullable pointer.
643       * `@mut` does dynamic borrow checks correctly.
644       * The `main` function is only detected at the topmost level of the crate.
645         The `#[main]` attribute is still valid anywhere.
646       * Struct fields may no longer be mutable. Use inherited mutability.
647       * The `#[no_send]` attribute makes a type that would otherwise be
648         `Send`, not.
649       * The `#[no_freeze]` attribute makes a type that would otherwise be
650         `Freeze`, not.
651       * Unbounded recursion will abort the process after reaching the limit
652         specified by the `RUST_MAX_STACK` environment variable (default: 1GB).
653       * The `vecs_implicitly_copyable` lint mode has been removed. Vectors
654         are never implicitly copyable.
655       * `#[static_assert]` makes compile-time assertions about static bools.
656       * At long last, 'argument modes' no longer exist.
657       * The rarely used `use mod` statement no longer exists.
658
659    * Syntax extensions
660       * `fail!` and `assert!` accept `~str`, `&'static str` or `fmt!`-style
661         argument list.
662       * `Encodable`, `Decodable`, `Ord`, `TotalOrd`, `TotalEq`, `DeepClone`,
663         `Rand`, `Zero` and `ToStr` can all be automatically derived with
664         `#[deriving(...)]`.
665       * The `bytes!` macro returns a vector of bytes for string, u8, char,
666         and unsuffixed integer literals.
667
668    * Libraries
669       * The `core` crate was renamed to `std`.
670       * The `std` crate was renamed to `extra`.
671       * More and improved documentation.
672       * std: `iterator` module for external iterator objects.
673       * Many old-style (internal, higher-order function) iterators replaced by
674         implementations of `Iterator`.
675       * std: Many old internal vector and string iterators,
676         incl. `any`, `all`. removed.
677       * std: The `finalize` method of `Drop` renamed to `drop`.
678       * std: The `drop` method now takes `&mut self` instead of `&self`.
679       * std: The prelude no longer reexports any modules, only types and traits.
680       * std: Prelude additions: `print`, `println`, `FromStr`, `ApproxEq`, `Equiv`,
681         `Iterator`, `IteratorUtil`, many numeric traits, many tuple traits.
682       * std: New numeric traits: `Fractional`, `Real`, `RealExt`, `Integer`, `Ratio`,
683         `Algebraic`, `Trigonometric`, `Exponential`, `Primitive`.
684       * std: Tuple traits and accessors defined for up to 12-tuples, e.g.
685         `(0, 1, 2).n2()` or `(0, 1, 2).n2_ref()`.
686       * std: Many types implement `Clone`.
687       * std: `path` type renamed to `Path`.
688       * std: `mut` module and `Mut` type removed.
689       * std: Many standalone functions removed in favor of methods and iterators
690         in `vec`, `str`. In the future methods will also work as functions.
691       * std: `reinterpret_cast` removed. Use `transmute`.
692       * std: ascii string handling in `std::ascii`.
693       * std: `Rand` is implemented for ~/@.
694       * std: `run` module for spawning processes overhauled.
695       * std: Various atomic types added to `unstable::atomic`.
696       * std: Various types implement `Zero`.
697       * std: `LinearMap` and `LinearSet` renamed to `HashMap` and `HashSet`.
698       * std: Borrowed pointer functions moved from `ptr` to `borrow`.
699       * std: Added `os::mkdir_recursive`.
700       * std: Added `os::glob` function performs filesystems globs.
701       * std: `FuzzyEq` renamed to `ApproxEq`.
702       * std: `Map` now defines `pop` and `swap` methods.
703       * std: `Cell` constructors converted to static methods.
704       * extra: `rc` module adds the reference counted pointers, `Rc` and `RcMut`.
705       * extra: `flate` module moved from `std` to `extra`.
706       * extra: `fileinput` module for iterating over a series of files.
707       * extra: `Complex` number type and `complex` module.
708       * extra: `Rational` number type and `rational` module.
709       * extra: `BigInt`, `BigUint` implement numeric and comparison traits.
710       * extra: `term` uses terminfo now, is more correct.
711       * extra: `arc` functions converted to methods.
712       * extra: Implementation of fixed output size variations of SHA-2.
713
714    * Tooling
715       * `unused_variable`  lint mode for unused variables (default: warn).
716       * `unused_unsafe` lint mode for detecting unnecessary `unsafe` blocks
717         (default: warn).
718       * `unused_mut` lint mode for identifying unused `mut` qualifiers
719         (default: warn).
720       * `dead_assignment` lint mode for unread variables (default: warn).
721       * `unnecessary_allocation` lint mode detects some heap allocations that are
722         immediately borrowed so could be written without allocating (default: warn).
723       * `missing_doc` lint mode (default: allow).
724       * `unreachable_code` lint mode (default: warn).
725       * The `rusti` command has been rewritten and a number of bugs addressed.
726       * rustc outputs in color on more terminals.
727       * rustc accepts a `--link-args` flag to pass arguments to the linker.
728       * rustc accepts a `-Z print-link-args` flag for debugging linkage.
729       * Compiling with `-g` will make the binary record information about
730         dynamic borrowcheck failures for debugging.
731       * rustdoc has a nicer stylesheet.
732       * Various improvements to rustdoc.
733       * Improvements to rustpkg (see the detailed release notes).
734
735 Version 0.6 (April 2013)
736 ------------------------
737
738    * ~2100 changes, numerous bugfixes
739
740    * Syntax changes
741       * The self type parameter in traits is now spelled `Self`
742       * The `self` parameter in trait and impl methods must now be explicitly
743         named (for example: `fn f(&self) { }`). Implicit self is deprecated.
744       * Static methods no longer require the `static` keyword and instead
745         are distinguished by the lack of a `self` parameter
746       * Replaced the `Durable` trait with the `'static` lifetime
747       * The old closure type syntax with the trailing sigil has been
748         removed in favor of the more consistent leading sigil
749       * `super` is a keyword, and may be prefixed to paths
750       * Trait bounds are separated with `+` instead of whitespace
751       * Traits are implemented with `impl Trait for Type`
752         instead of `impl Type: Trait`
753       * Lifetime syntax is now `&'l foo` instead of `&l/foo`
754       * The `export` keyword has finally been removed
755       * The `move` keyword has been removed (see "Semantic changes")
756       * The interior mutability qualifier on vectors, `[mut T]`, has been
757         removed. Use `&mut [T]`, etc.
758       * `mut` is no longer valid in `~mut T`. Use inherited mutability
759       * `fail` is no longer a keyword. Use `fail!()`
760       * `assert` is no longer a keyword. Use `assert!()`
761       * `log` is no longer a keyword. use `debug!`, etc.
762       * 1-tuples may be represented as `(T,)`
763       * Struct fields may no longer be `mut`. Use inherited mutability,
764         `@mut T`, `core::mut` or `core::cell`
765       * `extern mod { ... }` is no longer valid syntax for foreign
766         function modules. Use extern blocks: `extern { ... }`
767       * Newtype enums removed. Use tuple-structs.
768       * Trait implementations no longer support visibility modifiers
769       * Pattern matching over vectors improved and expanded
770       * `const` renamed to `static` to correspond to lifetime name,
771         and make room for future `static mut` unsafe mutable globals.
772       * Replaced `#[deriving_eq]` with `#[deriving(Eq)]`, etc.
773       * `Clone` implementations can be automatically generated with
774         `#[deriving(Clone)]`
775       * Casts to traits must use a pointer sigil, e.g. `@foo as @Bar`
776         instead of `foo as Bar`.
777       * Fixed length vector types are now written as `[int, .. 3]`
778         instead of `[int * 3]`.
779       * Fixed length vector types can express the length as a constant
780         expression. (ex: `[int, .. GL_BUFFER_SIZE - 2]`)
781
782    * Semantic changes
783       * Types with owned pointers or custom destructors move by default,
784         eliminating the `move` keyword
785       * All foreign functions are considered unsafe
786       * &mut is now unaliasable
787       * Writes to borrowed @mut pointers are prevented dynamically
788       * () has size 0
789       * The name of the main function can be customized using #[main]
790       * The default type of an inferred closure is &fn instead of @fn
791       * `use` statements may no longer be "chained" - they cannot import
792         identifiers imported by previous `use` statements
793       * `use` statements are crate relative, importing from the "top"
794         of the crate by default. Paths may be prefixed with `super::`
795         or `self::` to change the search behavior.
796       * Method visibility is inherited from the implementation declaration
797       * Structural records have been removed
798       * Many more types can be used in static items, including enums
799         'static-lifetime pointers and vectors
800       * Pattern matching over vectors improved and expanded
801       * Typechecking of closure types has been overhauled to
802         improve inference and eliminate unsoundness
803       * Macros leave scope at the end of modules, unless that module is
804         tagged with #[macro_escape]
805
806    * Libraries
807       * Added big integers to `std::bigint`
808       * Removed `core::oldcomm` module
809       * Added pipe-based `core::comm` module
810       * Numeric traits have been reorganized under `core::num`
811       * `vec::slice` finally returns a slice
812       * `debug!` and friends don't require a format string, e.g. `debug!(Foo)`
813       * Containers reorganized around traits in `core::container`
814       * `core::dvec` removed, `~[T]` is a drop-in replacement
815       * `core::send_map` renamed to `core::hashmap`
816       * `std::map` removed; replaced with `core::hashmap`
817       * `std::treemap` reimplemented as an owned balanced tree
818       * `std::deque` and `std::smallintmap` reimplemented as owned containers
819       * `core::trie` added as a fast ordered map for integer keys
820       * Set types added to `core::hashmap`, `core::trie` and `std::treemap`
821       * `Ord` split into `Ord` and `TotalOrd`. `Ord` is still used to
822         overload the comparison operators, whereas `TotalOrd` is used
823         by certain container types
824
825    * Other
826       * Replaced the 'cargo' package manager with 'rustpkg'
827       * Added all-purpose 'rust' tool
828       * `rustc --test` now supports benchmarks with the `#[bench]` attribute
829       * rustc now *attempts* to offer spelling suggestions
830       * Improved support for ARM and Android
831       * Preliminary MIPS backend
832       * Improved foreign function ABI implementation for x86, x86_64
833       * Various memory usage improvements
834       * Rust code may be embedded in foreign code under limited circumstances
835       * Inline assembler supported by new asm!() syntax extension.
836
837 Version 0.5 (December 2012)
838 ---------------------------
839
840    * ~900 changes, numerous bugfixes
841
842    * Syntax changes
843       * Removed `<-` move operator
844       * Completed the transition from the `#fmt` extension syntax to `fmt!`
845       * Removed old fixed length vector syntax - `[T]/N`
846       * New token-based quasi-quoters, `quote_tokens!`, `quote_expr!`, etc.
847       * Macros may now expand to items and statements
848       * `a.b()` is always parsed as a method call, never as a field projection
849       * `Eq` and `IterBytes` implementations can be automatically generated
850         with `#[deriving_eq]` and `#[deriving_iter_bytes]` respectively
851       * Removed the special crate language for `.rc` files
852       * Function arguments may consist of any irrefutable pattern
853
854    * Semantic changes
855       * `&` and `~` pointers may point to objects
856       * Tuple structs - `struct Foo(Bar, Baz)`. Will replace newtype enums.
857       * Enum variants may be structs
858       * Destructors can be added to all nominal types with the Drop trait
859       * Structs and nullary enum variants may be constants
860       * Values that cannot be implicitly copied are now automatically moved
861         without writing `move` explicitly
862       * `&T` may now be coerced to `*T`
863       * Coercions happen in `let` statements as well as function calls
864       * `use` statements now take crate-relative paths
865       * The module and type namespaces have been merged so that static
866         method names can be resolved under the trait in which they are
867         declared
868
869    * Improved support for language features
870       * Trait inheritance works in many scenarios
871       * More support for explicit self arguments in methods - `self`, `&self`
872         `@self`, and `~self` all generally work as expected
873       * Static methods work in more situations
874       * Experimental: Traits may declare default methods for the implementations
875         to use
876
877    * Libraries
878       * New condition handling system in `core::condition`
879       * Timsort added to `std::sort`
880       * New priority queue, `std::priority_queue`
881       * Pipes for serializable types, `std::flatpipes'
882       * Serialization overhauled to be trait-based
883       * Expanded `getopts` definitions
884       * Moved futures to `std`
885       * More functions are pure now
886       * `core::comm` renamed to `oldcomm`. Still deprecated
887       * `rustdoc` and `cargo` are libraries now
888
889    * Misc
890       * Added a preliminary REPL, `rusti`
891       * License changed from MIT to dual MIT/APL2
892
893 Version 0.4 (October 2012)
894 --------------------------
895
896    * ~2000 changes, numerous bugfixes
897
898    * Syntax
899       * All keywords are now strict and may not be used as identifiers anywhere
900       * Keyword removal: 'again', 'import', 'check', 'new', 'owned', 'send',
901         'of', 'with', 'to', 'class'.
902       * Classes are replaced with simpler structs
903       * Explicit method self types
904       * `ret` became `return` and `alt` became `match`
905       * `import` is now `use`; `use is now `extern mod`
906       * `extern mod { ... }` is now `extern { ... }`
907       * `use mod` is the recommended way to import modules
908       * `pub` and `priv` replace deprecated export lists
909       * The syntax of `match` pattern arms now uses fat arrow (=>)
910       * `main` no longer accepts an args vector; use `os::args` instead
911
912    * Semantics
913       * Trait implementations are now coherent, ala Haskell typeclasses
914       * Trait methods may be static
915       * Argument modes are deprecated
916       * Borrowed pointers are much more mature and recommended for use
917       * Strings and vectors in the static region are stored in constant memory
918       * Typestate was removed
919       * Resolution rewritten to be more reliable
920       * Support for 'dual-mode' data structures (freezing and thawing)
921
922    * Libraries
923       * Most binary operators can now be overloaded via the traits in
924         `core::ops'
925       * `std::net::url` for representing URLs
926       * Sendable hash maps in `core::send_map`
927       * `core::task' gained a (currently unsafe) task-local storage API
928
929    * Concurrency
930       * An efficient new intertask communication primitive called the pipe,
931         along with a number of higher-level channel types, in `core::pipes`
932       * `std::arc`, an atomically reference counted, immutable, shared memory
933         type
934       * `std::sync`, various exotic synchronization tools based on arcs and pipes
935       * Futures are now based on pipes and sendable
936       * More robust linked task failure
937       * Improved task builder API
938
939    * Other
940       * Improved error reporting
941       * Preliminary JIT support
942       * Preliminary work on precise GC
943       * Extensive architectural improvements to rustc
944       * Begun a transition away from buggy C++-based reflection (shape) code to
945         Rust-based (visitor) code
946       * All hash functions and tables converted to secure, randomized SipHash
947
948 Version 0.3  (July 2012)
949 ------------------------
950
951    * ~1900 changes, numerous bugfixes
952
953    * New coding conveniences
954       * Integer-literal suffix inference
955       * Per-item control over warnings, errors
956       * #[cfg(windows)] and #[cfg(unix)] attributes
957       * Documentation comments
958       * More compact closure syntax
959       * 'do' expressions for treating higher-order functions as
960         control structures
961       * *-patterns (wildcard extended to all constructor fields)
962
963    * Semantic cleanup
964       * Name resolution pass and exhaustiveness checker rewritten
965       * Region pointers and borrow checking supersede alias
966         analysis
967       * Init-ness checking is now provided by a region-based liveness
968         pass instead of the typestate pass; same for last-use analysis
969       * Extensive work on region pointers
970
971    * Experimental new language features
972       * Slices and fixed-size, interior-allocated vectors
973       * #!-comments for lang versioning, shell execution
974       * Destructors and iface implementation for classes;
975         type-parameterized classes and class methods
976       * 'const' type kind for types that can be used to implement
977         shared-memory concurrency patterns
978
979    * Type reflection
980
981    * Removal of various obsolete features
982       * Keywords: 'be', 'prove', 'syntax', 'note', 'mutable', 'bind',
983                  'crust', 'native' (now 'extern'), 'cont' (now 'again')
984
985       * Constructs: do-while loops ('do' repurposed), fn binding,
986                     resources (replaced by destructors)
987
988    * Compiler reorganization
989       * Syntax-layer of compiler split into separate crate
990       * Clang (from LLVM project) integrated into build
991       * Typechecker split into sub-modules
992
993    * New library code
994       * New time functions
995       * Extension methods for many built-in types
996       * Arc: atomic-refcount read-only / exclusive-use shared cells
997       * Par: parallel map and search routines
998       * Extensive work on libuv interface
999       * Much vector code moved to libraries
1000       * Syntax extensions: #line, #col, #file, #mod, #stringify,
1001         #include, #include_str, #include_bin
1002
1003    * Tool improvements
1004       * Cargo automatically resolves dependencies
1005
1006 Version 0.2  (March 2012)
1007 -------------------------
1008
1009    * >1500 changes, numerous bugfixes
1010
1011    * New docs and doc tooling
1012
1013    * New port: FreeBSD x86_64
1014
1015    * Compilation model enhancements
1016       * Generics now specialized, multiply instantiated
1017       * Functions now inlined across separate crates
1018
1019    * Scheduling, stack and threading fixes
1020       * Noticeably improved message-passing performance
1021       * Explicit schedulers
1022       * Callbacks from C
1023       * Helgrind clean
1024
1025    * Experimental new language features
1026       * Operator overloading
1027       * Region pointers
1028       * Classes
1029
1030    * Various language extensions
1031       * C-callback function types: 'crust fn ...'
1032       * Infinite-loop construct: 'loop { ... }'
1033       * Shorten 'mutable' to 'mut'
1034       * Required mutable-local qualifier: 'let mut ...'
1035       * Basic glob-exporting: 'export foo::*;'
1036       * Alt now exhaustive, 'alt check' for runtime-checked
1037       * Block-function form of 'for' loop, with 'break' and 'ret'.
1038
1039    * New library code
1040       * AST quasi-quote syntax extension
1041       * Revived libuv interface
1042       * New modules: core::{future, iter}, std::arena
1043       * Merged per-platform std::{os*, fs*} to core::{libc, os}
1044       * Extensive cleanup, regularization in libstd, libcore
1045
1046 Version 0.1  (January 20, 2012)
1047 -------------------------------
1048
1049    * Most language features work, including:
1050       * Unique pointers, unique closures, move semantics
1051       * Interface-constrained generics
1052       * Static interface dispatch
1053       * Stack growth
1054       * Multithread task scheduling
1055       * Typestate predicates
1056       * Failure unwinding, destructors
1057       * Pattern matching and destructuring assignment
1058       * Lightweight block-lambda syntax
1059       * Preliminary macro-by-example
1060
1061    * Compiler works with the following configurations:
1062       * Linux: x86 and x86_64 hosts and targets
1063       * MacOS: x86 and x86_64 hosts and targets
1064       * Windows: x86 hosts and targets
1065
1066    * Cross compilation / multi-target configuration supported.
1067
1068    * Preliminary API-documentation and package-management tools included.
1069
1070 Known issues:
1071
1072    * Documentation is incomplete.
1073
1074    * Performance is below intended target.
1075
1076    * Standard library APIs are subject to extensive change, reorganization.
1077
1078    * Language-level versioning is not yet operational - future code will
1079      break unexpectedly.