Skip to content

Commit

Permalink
Release 2.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
d-frey committed Jul 31, 2018
1 parent c876465 commit 5a3a35b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required (VERSION 3.3.0 FATAL_ERROR)

project (pegtl VERSION 2.6.1 LANGUAGES CXX)
project (pegtl VERSION 2.7.0 LANGUAGES CXX)

# installation directories
set (PEGTL_INSTALL_INCLUDE_DIR "include" CACHE STRING "The installation include directory")
Expand All @@ -15,7 +15,7 @@ target_include_directories (pegtl INTERFACE
$<INSTALL_INTERFACE:${PEGTL_INSTALL_INCLUDE_DIR}>
)

# features used by the PEGTL
# features required by the PEGTL
target_compile_features (pegtl INTERFACE
cxx_alias_templates
cxx_auto_type
Expand Down
6 changes: 3 additions & 3 deletions doc/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

## 2.7.0

**Not yet released**
Released 2018-07-31

* Added `mmap_file<>` support for Windows.
* Added deduction guides for the input classes when compiling with C++17.
* Added [`mmap_file<>`](Inputs-and-Parsing.md#file-input) support for Windows.
* Added [deduction guides](https://en.cppreference.com/w/cpp/language/class_template_argument_deduction) for the input classes when compiling with C++17.

## 2.6.1

Expand Down
6 changes: 3 additions & 3 deletions include/tao/pegtl/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
#ifndef TAO_PEGTL_VERSION_HPP
#define TAO_PEGTL_VERSION_HPP

#define TAO_PEGTL_VERSION "2.6.1"
#define TAO_PEGTL_VERSION "2.7.0"

#define TAO_PEGTL_VERSION_MAJOR 2
#define TAO_PEGTL_VERSION_MINOR 6
#define TAO_PEGTL_VERSION_PATCH 1
#define TAO_PEGTL_VERSION_MINOR 7
#define TAO_PEGTL_VERSION_PATCH 0

// Compatibility, remove with 3.0
#define TAOCPP_PEGTL_VERSION TAO_PEGTL_VERSION
Expand Down

0 comments on commit 5a3a35b

Please sign in to comment.