Skip to content

Commit

Permalink
Release 2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
d-frey committed May 1, 2018
1 parent 192599d commit f24d8c2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required (VERSION 3.2.0 FATAL_ERROR)

project (pegtl VERSION 2.4.0 LANGUAGES CXX)
project (pegtl VERSION 2.5.0 LANGUAGES CXX)

# define a header-only library
add_library (pegtl INTERFACE)
Expand Down
10 changes: 5 additions & 5 deletions doc/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

## 2.5.0

*Not Released Yet*
Released 2018-05-01

* Added rules to match Unicode properties via [ICU](http://site.icu-project.org) to contrib.
* Added function to `memory_input<>` to obtain the line around a position.
* Added function to `memory_input<>` to start again from the beginning.
* Improved the [Parse Tree / AST interface](Parse-Tree.md).
* Fixed parse tree node generation to correctly remove intermediate nodes.
* Added big- and little-endian support to the UTF-16 and UTF-32 rules.
* Added rules for UINT-8 and big- and little-endian UINT-16, UINT-32 and UINT-64.
* Improved the [Parse Tree / AST interface](Parse-Tree.md).
* Fixed parse tree node generation to remove intermediate nodes.
* Added function to `memory_input<>` to obtain the line around a position.
* Added function to `memory_input<>` to start again from the beginning.
* Added example for Python-style indentation-aware grammars.
* Added examples for regular, context-free, and context-sensitive grammars.
* Added example for how to parse with a symbol table.
Expand Down
4 changes: 2 additions & 2 deletions include/tao/pegtl/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
#ifndef TAO_PEGTL_VERSION_HPP
#define TAO_PEGTL_VERSION_HPP

#define TAO_PEGTL_VERSION "2.4.0"
#define TAO_PEGTL_VERSION "2.5.0"

#define TAO_PEGTL_VERSION_MAJOR 2
#define TAO_PEGTL_VERSION_MINOR 4
#define TAO_PEGTL_VERSION_MINOR 5
#define TAO_PEGTL_VERSION_PATCH 0

// Compatibility, remove with 3.0
Expand Down

0 comments on commit f24d8c2

Please sign in to comment.