-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Update RELEASES.txt for 0.9 #11248
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update RELEASES.txt for 0.9 #11248
Conversation
* Strings can no longer be mutated through index assignment. | ||
* Raw strings can be created via the basic `r"foo"` syntax or with matched | ||
hash delimeters, as in `r###"foo"###`. | ||
* `~fn` is now written `proc |args| -> retval { ... }` and may only be |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should probably be proc (args) -> retval { ... }
This list is incredibly satisfying to read! |
`loop`. | ||
* Strings can no longer be mutated through index assignment. | ||
* Raw strings can be created via the basic `r"foo"` syntax or with matched | ||
hash delimeters, as in `r###"foo"###`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
delimiters
Comments addressed. |
entirely lock-free. | ||
* extra: The `flatpipes` module had bitrotted and was removed. | ||
* extra: All crypto functions have been removed and Rust now has a policy of | ||
not reimplementing crypto. In the future crypto will be provided by |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"of not implementing crypto in the standard lib"? Since it's not some fundamental issue with the language itself.
r=me with lingering things fixed |
* The `float` type has been removed. Use `f32` or `f64` instead. | ||
* A new facility for enabling experimental features (feature gating) has | ||
been added, using the crate-level `#[feature(foo)]` attribute. | ||
* Managed boxes (@) are now behinde a feature gate |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Typo: behinde
No description provided.