Skip to content

Commit

Permalink
Prepare for 0.4.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
bakpakin committed Apr 14, 2019
1 parent 4e6193b commit 7527142
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# Changelog
All notable changes to this project will be documented in this file.

## 0.4.1 latest - ??
## 0.4.1 - 2019-04-14
- Squash some bugs
- Peg patterns can now make captures in any position in a grammar.
- Add color to repl output
- Add array/remove function
- Add meson build support
Expand Down
2 changes: 1 addition & 1 deletion src/core/peg.c
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ static const uint8_t *peg_rule(
s->mode = oldmode;
if (!result) return NULL;
Janet cap = janet_stringv(s->scratch->data + cs.scratch,
s->scratch->count - cs.scratch);
s->scratch->count - cs.scratch);
cap_load(s, cs);
pushcap(s, cap, tag);
return result;
Expand Down

0 comments on commit 7527142

Please sign in to comment.