From 558757e0018e58063701247b5d8795806d82af40 Mon Sep 17 00:00:00 2001 From: "Dr. Colin Hirsch" Date: Thu, 3 Feb 2022 19:41:09 +0100 Subject: [PATCH] Fix version and format. --- .github/workflows/clang-format.yml | 4 ++-- doc/Changelog.md | 6 ++++++ include/tao/pegtl/version.hpp | 6 +++--- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/.github/workflows/clang-format.yml b/.github/workflows/clang-format.yml index a6aae1ae7..e7822d202 100644 --- a/.github/workflows/clang-format.yml +++ b/.github/workflows/clang-format.yml @@ -16,7 +16,7 @@ jobs: steps: - uses: actions/checkout@v2 - - uses: DoozyX/clang-format-lint-action@v0.12 + - uses: DoozyX/clang-format-lint-action@v0.13 with: extensions: 'hpp,cpp' - clangFormatVersion: 12 + clangFormatVersion: 13 diff --git a/doc/Changelog.md b/doc/Changelog.md index 05a9d927d..442b4d806 100644 --- a/doc/Changelog.md +++ b/doc/Changelog.md @@ -1,5 +1,11 @@ # Changelog +## 3.2.4 + +Released: 2022-02-03 + +* Fixed `version.hpp`. + ## 3.2.3 Released: 2022-02-03 diff --git a/include/tao/pegtl/version.hpp b/include/tao/pegtl/version.hpp index c6ad16e16..c1281b571 100644 --- a/include/tao/pegtl/version.hpp +++ b/include/tao/pegtl/version.hpp @@ -1,13 +1,13 @@ -// Copyright (c) 2017-2021 Dr. Colin Hirsch and Daniel Frey +// Copyright (c) 2017-2022 Dr. Colin Hirsch and Daniel Frey // Please see LICENSE for license or visit https://github.com/taocpp/PEGTL/ #ifndef TAO_PEGTL_VERSION_HPP #define TAO_PEGTL_VERSION_HPP -#define TAO_PEGTL_VERSION "3.2.2" +#define TAO_PEGTL_VERSION "3.2.4" #define TAO_PEGTL_VERSION_MAJOR 3 #define TAO_PEGTL_VERSION_MINOR 2 -#define TAO_PEGTL_VERSION_PATCH 2 +#define TAO_PEGTL_VERSION_PATCH 4 #endif