Skip to content

Commit

Permalink
Updated changelog and fixed minor styling issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
dragostis committed Jun 28, 2016
1 parent 0f59d78 commit 9d43463
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
23 changes: 23 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,19 @@
# Change Log

## [v0.3.2](https://github.com/dragostis/pest/tree/v0.3.2) (2016-06-28)
[Full Changelog](https://github.com/dragostis/pest/compare/v0.3.1...v0.3.2)

**Closed issues:**

- line\_col causing stack overflow when optimization turned off [\#67](https://github.com/dragostis/pest/issues/67)

## [v0.3.1](https://github.com/dragostis/pest/tree/v0.3.1) (2016-06-25)
[Full Changelog](https://github.com/dragostis/pest/compare/v0.3.0...v0.3.1)

**Implemented enhancements:**

- Add changelog [\#56](https://github.com/dragostis/pest/issues/56)

## [v0.3.0](https://github.com/dragostis/pest/tree/v0.3.0) (2016-06-22)
[Full Changelog](https://github.com/dragostis/pest/compare/v0.2.9...v0.3.0)

Expand Down Expand Up @@ -63,6 +77,10 @@
## [v0.2.3](https://github.com/dragostis/pest/tree/v0.2.3) (2016-06-10)
[Full Changelog](https://github.com/dragostis/pest/compare/v0.2.2...v0.2.3)

**Implemented enhancements:**

- process! support mutability-specifier for bindings [\#50](https://github.com/dragostis/pest/issues/50)

**Merged pull requests:**

- Add a Gitter chat badge to README.md [\#48](https://github.com/dragostis/pest/pull/48) ([gitter-badger](https://github.com/gitter-badger))
Expand Down Expand Up @@ -127,6 +145,7 @@

- Fixed minor typo. [\#40](https://github.com/dragostis/pest/pull/40) ([alexandrusebastian](https://github.com/alexandrusebastian))
- Fix some docs + thoughts on the doc [\#32](https://github.com/dragostis/pest/pull/32) ([Keats](https://github.com/Keats))
- Token processing constructs. [\#24](https://github.com/dragostis/pest/pull/24) ([dragostis](https://github.com/dragostis))

## [v0.1.0](https://github.com/dragostis/pest/tree/v0.1.0) (2016-05-22)
[Full Changelog](https://github.com/dragostis/pest/compare/v0.0.1...v0.1.0)
Expand All @@ -139,6 +158,10 @@
- Add repetition rules. [\#2](https://github.com/dragostis/pest/issues/2)
- Restyle grammar. [\#1](https://github.com/dragostis/pest/issues/1)

**Merged pull requests:**

- Performance [\#10](https://github.com/dragostis/pest/pull/10) ([dragostis](https://github.com/dragostis))

## [v0.0.1](https://github.com/dragostis/pest/tree/v0.0.1) (2016-04-24)


Expand Down
2 changes: 1 addition & 1 deletion src/inputs/string_input.rs
Expand Up @@ -109,7 +109,7 @@ impl<'a> Input<'a> for StringInput<'a> {
},
Some(c) => {
pos -= c.len_utf8();
line_col = (line_col.0, line_col.1+ 1);
line_col = (line_col.0, line_col.1 + 1);
},
None => unreachable!(),
}
Expand Down

0 comments on commit 9d43463

Please sign in to comment.