Skip to content

Commit f74bc13

Browse files
committed
package: bumpversion from 1.15.0 to 1.16.0.
1 parent 3b3c04f commit f74bc13

3 files changed

Lines changed: 20 additions & 4 deletions

File tree

CHANGELOG.rst

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,23 @@ Change Log
44
Not Yet Released
55
----------------
66

7-
Code change: <https://github.com/soasme/PeppaPEG/compare/v1.15.0..HEAD>.
7+
Code change: <https://github.com/soasme/PeppaPEG/compare/v1.16.0..HEAD>.
8+
9+
1.16.0 (4 Sep, 2021)
10+
--------------------
11+
12+
Code change: <https://github.com/soasme/PeppaPEG/compare/v1.15.0..v1.16.0>.
13+
14+
* [API Change]: Rename Shell subcommand `peppa ast` to `peppa parse`. `#123 <https://github.com/soasme/PeppaPEG/pull/123>`_.
15+
* [Performance]: Optimize the code to reduce errmsg string printf calls. `#122 <https://github.com/soasme/PeppaPEG/pull/122>`_.
16+
* [Performance]: Optimize the code to reduce frame malloc by keeping unused frame. `#121 <https://github.com/soasme/PeppaPEG/pull/121>`_.
17+
* [Performance]: Optimize the code to reduce backref malloc in sequence matching. `#120 <https://github.com/soasme/PeppaPEG/pull/120>`_.
18+
* [Performance]: Optimize the code to reduce strlen call in literal matching. `#119 <https://github.com/soasme/PeppaPEG/pull/119>`_.
19+
* [Enhancement]: Shell support reading files from a glob pattern. `#118 <https://github.com/soasme/PeppaPEG/pull/118>`.
20+
* [Example]: Added Golang grammar written in Peppa PEG Specification. `#117 <https://github.com/soasme/PeppaPEG/pull/117>`_.
21+
* [Bug Fix]: Non-terminal choice should lift the only child. `#116 <https://github.com/soasme/PeppaPEG/pull/116>`_.
22+
* [API Change]: Rename Cut operator to `~`. `#115 <https://github.com/soasme/PeppaPEG/pull/115>`.
23+
* [Feature]: Support Left Recursion. `#112 <https://github.com/soasme/PeppaPEG/pull/112>`_, `#113 <https://github.com/soasme/PeppaPEG/pull/113>`_, `#114 <https://github.com/soasme/PeppaPEG/pull/114>`_.
824

925
1.15.0 (22 Aug, 2021)
1026
---------------------
@@ -33,7 +49,7 @@ Code change: <https://github.com/soasme/PeppaPEG/compare/v1.13.0..v1.14.0>.
3349
* [Feature]: New PEG expression: `@cut`. `#90 <https://github.com/soasme/PeppaPEG/pull/90>`_.
3450
* [API Change]: `P4_JsonifySourceAst` now doesn't require `grammar` in the parameters. `#89 <https://github.com/soasme/PeppaPEG/pull/89>`_.
3551
* [Enhancement]: Wrap errors with catch_err / catch_oom in the .c implementation. `#88 <https://github.com/soasme/PeppaPEG/pull/88`_ `#91 <https://github.com/soasme/PeppaPEG/pull/91`_ `#92 <https://github.com/soasme/PeppaPEG/pull/92`_.
36-
* [Bugfix]: Error report now can display correct lineno:offset information. `#87 <https://github.com/soasme/PeppaPEG/pull/87`_.
52+
* [Bug Fix]: Error report now can display correct lineno:offset information. `#87 <https://github.com/soasme/PeppaPEG/pull/87`_.
3753
* [API Change]: `P4_RuleID` is now deprecated. Please use string (`char*`) for finding a rule. `#84 <https://github.com/soasme/PeppaPEG/pull/84`_ `#86 <https://github.com/soasme/PeppaPEG/pull/86`_.
3854
* [API Change]: `struct P4_Grammar`, `struct P4_Expression`, `struct P4_Frame` are now private structures. However, you can still access `P4_Grammar`, `P4_Expression` as typedefs.
3955
* [Example]: Added a example TOML v1.0 parser. `#81 <https://github.com/soasme/PeppaPEG/pull/81`_.

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.9)
33
project(peppa C)
44

55
set(PROJECT_VERSION_MAJOR 1)
6-
set(PROJECT_VERSION_MINOR 15)
6+
set(PROJECT_VERSION_MINOR 16)
77
set(PROJECT_VERSION_PATCH 0)
88
set(P4_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}")
99

peppa.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ typedef uint32_t ucs4_t;
9292
# define P4_MAJOR_VERSION 1
9393

9494
/** Minor version number. */
95-
# define P4_MINOR_VERSION 15
95+
# define P4_MINOR_VERSION 16
9696

9797
/** Patch version number. */
9898
# define P4_PATCH_VERSION 0

0 commit comments

Comments
 (0)