Skip to content

Commit cce29cd

Browse files
committed
update changelog and bump version to 0.2.1
1 parent 2270fb1 commit cce29cd

File tree

2 files changed

+23
-2
lines changed

2 files changed

+23
-2
lines changed

CHANGELOG.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,33 @@
11
# Change Log
22

33
## [Unreleased][unreleased]
4+
45
### Changed
56

7+
## 0.2.1 - 2015-04-04
8+
9+
### Thanks
10+
- @mtsr for catching the remaining debug println!
11+
- @jag426 who killed a lot of warnings
12+
- @skade for removing the dependency on the core feature gate
13+
14+
15+
### Added
16+
- little endian unsigned int parsers le_u8, le_u16, le_u32, le_u64
17+
- `count!` to apply a parser a specified number of times
18+
- `cond!` applies a parser if the condition is met
19+
- more parser development tools in `util::*`
20+
21+
### Fixed
22+
- in one case, `opt!` would not compile
23+
24+
### Removed
25+
- most of the feature gates are now removed. The only one still needed is `collections`
26+
627
## 0.2.0 - 2015-03-24
728
*works with `rustc 1.0.0-dev (81e2396c7 2015-03-19) (built 2015-03-19)`*
829

9-
## Thanks
30+
### Thanks
1031
- Ryman for the AsBytes implementation
1132
- jag426 and jaredly for documentation fixes
1233
- eternaleye on #rust IRC for his help on the new macro syntax

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "nom"
4-
version = "0.2.0"
4+
version = "0.2.1"
55
authors = [ "[email protected]" ]
66
description = "A byte oriented, zero copy, parser combinators library"
77
license = "MIT"

0 commit comments

Comments
 (0)