Merge pull request #1 from myoungwoon-kim/dev
[platform/upstream/rust-shlex.git] / CHANGELOG.md
1 # 1.1.0
2
3 * Adds the `std` feature (enabled by default)
4 * Disabling the `std` feature makes the crate work in `#![no_std]` mode, assuming presence of the `alloc` crate
5
6 # 1.0.0
7
8 * Adds the `join` convenience function.
9 * Fixes parsing of `'\\n'` to match the behavior of bash/Zsh/Python `shlex`. The result was previously `\n`, now it is `\\n`.
10
11 # 0.1.1
12
13 * Adds handling of `#` comments.
14
15 # 0.1.0
16
17 This is the initial release.