From b7df6180d20422b2724d26007aebb24066f2a6a9 Mon Sep 17 00:00:00 2001 From: Kris Jusiak Date: Sat, 9 Mar 2024 10:49:31 -0600 Subject: [PATCH] :arrow_up: v1.1.11 --- CMakeLists.txt | 2 +- README.md | 1 + doc/CHANGELOG.md | 7 +++++++ include/boost/sml.hpp | 4 ++-- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9c9f48d4..004f95a7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -177,7 +177,7 @@ configure_package_config_file( write_basic_package_version_file( ${CMAKE_CURRENT_BINARY_DIR}/smlConfigVersion.cmake - VERSION 1.1.10 + VERSION 1.1.11 COMPATIBILITY SameMajorVersion ) diff --git a/README.md b/README.md index fbe4d6fd..d8d104d4 100644 --- a/README.md +++ b/README.md @@ -313,6 +313,7 @@ send: 42 * [Plant UML Integration](https://boost-ext.github.io/sml/examples.html#plant-uml-integration) * [FAQ](https://boost-ext.github.io/sml/faq.html) * [CHANGELOG](https://boost-ext.github.io/sml/CHANGELOG.html) + * [[1.1.11] - 2024-03-09](https://boost-ext.github.io/sml/CHANGELOG.html#1111-2024-03-09) * [[1.1.10] - 2024-03-09](https://boost-ext.github.io/sml/CHANGELOG.html#1110-2024-03-09) * [[1.1.9] - 2023-09-13](https://boost-ext.github.io/sml/CHANGELOG.html#119-2023-09-13) * [[1.1.6] - 2022-09-07](https://boost-ext.github.io/sml/CHANGELOG.html#116-2022-09-07) diff --git a/doc/CHANGELOG.md b/doc/CHANGELOG.md index 62fdf0df..9deaa0f4 100644 --- a/doc/CHANGELOG.md +++ b/doc/CHANGELOG.md @@ -1,3 +1,10 @@ +## [1.1.11] - 2024-03-09 +- **Bug Fixes** + - MSVC typename + +- **Additions** + - [performance] switch as defult dispatch_policy + ## [1.1.10] - 2024-03-09 - **Bug Fixes** - [Issues](https://github.com/boost-ext/sml/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aclosed+closed%3A2023-09-13..2024-03-09+) diff --git a/include/boost/sml.hpp b/include/boost/sml.hpp index f811dfde..53cd999c 100644 --- a/include/boost/sml.hpp +++ b/include/boost/sml.hpp @@ -9,12 +9,12 @@ #if (__cplusplus < 201305L && _MSC_VER < 1900) #error "[Boost::ext].SML requires C++14 support (Clang-3.4+, GCC-5.1+, MSVC-2015+)" #else -#define BOOST_SML_VERSION 1'1'10 +#define BOOST_SML_VERSION 1'1'11 #define BOOST_SML_NAMESPACE_BEGIN \ namespace boost { \ inline namespace ext { \ namespace sml { \ - inline namespace v1_1_10 { + inline namespace v1_1_11 { #define BOOST_SML_NAMESPACE_END \ } \ } \