Skip to content

Commit

Permalink
Bump version to 1.2.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
soasme committed Feb 15, 2021
1 parent dc1b3d1 commit 5365b93
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 1.2.0 (15 Feb, 2021)

* Add New Expression Kind: `P4_BackReference`. (#10)
* Change the return value to `P4_Error` for `P4_AddGrammarRule`. (#9)
* Added `P4_GetSourcePosition`. (#8)

## 1.1.0 (10 Feb, 2021)

* C89 compliant. (#7)
Expand Down
4 changes: 2 additions & 2 deletions ROADMAP.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
- [ ] New Expression Kind: CharacterSet.
- [ ] New Expression Kind: Complement.
- [ ] New Expression Kind: Panic.
- [ ] New Expression Kind: BackReference.
- [ ] New Expression Kind: Function.
- [ ] Stop on first error v/s Recover from Panic.
- [ ] Allow replacing malloc/free functions.
- [ ] New Source Flag: Support UTF-8 BOM sequence (0xEF 0xBB 0xBF) at the start of source.
- [ ] Python Binding.
- [ ] NeedLoosen, NeedSquash, NeedLift should be well-tested.
- [ ] Auto generate documentation for functions and defined macros.
- [x] New Expression Kind: BackReference. Added in v1.2.0.
- [x] Add Flag Set/Unset functions. Added in v1.1.0.
- [x] INI parser example. Added in v1.1.0.
- [x] ~~Flag SPACED.~~ Added in v1.0.0.
- [x] Flag SPACED. Added in v1.0.0.
2 changes: 1 addition & 1 deletion peppapeg.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ extern "C"
# define P4_PRIVATE(type) static type

# define P4_MAJOR_VERSION 1
# define P4_MINOR_VERSION 1
# define P4_MINOR_VERSION 2
# define P4_PATCH_VERSION 0

# define P4_FLAG_NONE ((uint32_t)(0x0))
Expand Down

0 comments on commit 5365b93

Please sign in to comment.