2020-07-02 05:11:04 +08:00
|
|
|
This is the draft release notes for 0.15.0, scheduled to be released on
|
|
|
|
2021-01-01.
|
2020-08-14 04:56:28 +08:00
|
|
|
|
|
|
|
# Deprecated features
|
|
|
|
|
2020-08-16 05:52:50 +08:00
|
|
|
The following deprecated features trigger a warning whenever the code is parsed
|
|
|
|
or compiled, even if it is not executed:
|
|
|
|
|
2020-08-14 04:56:28 +08:00
|
|
|
- The `chr` command is now deprecated. Use `str:from-codepoints` instead.
|
|
|
|
|
|
|
|
- The `ord` command is now deprecated. Use `str:to-codepoints` instead.
|
2020-08-16 05:52:50 +08:00
|
|
|
|
|
|
|
The following deprecated features trigger a warning when the code is evaluated:
|
|
|
|
|
|
|
|
- Using `:` in slice indicies is deprecated. Use `..` instead.
|
|
|
|
|
|
|
|
# Notable new features
|
|
|
|
|
|
|
|
New features in the language:
|
|
|
|
|
|
|
|
- Slice indicies can now use `..` for left-closed, right-open ranges, and
|
|
|
|
`..=` for closed ranges.
|