From 436ec5968a2415e9194a53d0a21ec0157fc080dd Mon Sep 17 00:00:00 2001 From: Kris Jusiak Date: Tue, 2 Dec 2025 01:22:25 +0000 Subject: [PATCH] :arrow_up: v1.1.13 Problem: - 1.1.11 is marked as 1.1.12 via tag - There multiple changes not release Solution: - Create 1.1.13 release --- CMakeLists.txt | 2 +- README.md | 2 ++ doc/CHANGELOG.md | 8 ++++++++ include/boost/sml.hpp | 4 ++-- 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 47e5a0e4..c314e04a 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.11 + VERSION 1.1.13 COMPATIBILITY SameMajorVersion ) diff --git a/README.md b/README.md index d28ea83e..649328c7 100644 --- a/README.md +++ b/README.md @@ -313,6 +313,8 @@ 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.13] - 2025-12-01](https://boost-ext.github.io/sml/CHANGELOG.html#1113-2025-12-01) + * [[1.1.12] - 2025-04-02](https://boost-ext.github.io/sml/CHANGELOG.html#1112-2025-04-02) * [[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) diff --git a/doc/CHANGELOG.md b/doc/CHANGELOG.md index 9deaa0f4..99402046 100644 --- a/doc/CHANGELOG.md +++ b/doc/CHANGELOG.md @@ -1,3 +1,11 @@ +## [1.1.13] - 2025-12-01 +- Changes + - https://github.com/boost-ext/sml/compare/v1.1.12...v1.1.13 + +## [1.1.12] - 2025-04-02 +- Changes + - https://github.com/boost-ext/sml/compare/v1.1.11...v1.1.12 + ## [1.1.11] - 2024-03-09 - **Bug Fixes** - MSVC typename diff --git a/include/boost/sml.hpp b/include/boost/sml.hpp index 48267bb6..1d38a667 100644 --- a/include/boost/sml.hpp +++ b/include/boost/sml.hpp @@ -12,12 +12,12 @@ #if defined(__ICCARM__) && __IAR_SYSTEMS_ICC__ < 8 #error "[Boost::ext].SML requires C++14 support (IAR C/C++ ARM 8.1+)" #endif -#define BOOST_SML_VERSION 1'1'11 +#define BOOST_SML_VERSION 1'1'13 #define BOOST_SML_NAMESPACE_BEGIN \ namespace boost { \ inline namespace ext { \ namespace sml { \ - inline namespace v1_1_11 { + inline namespace v1_1_13 { #define BOOST_SML_NAMESPACE_END \ } \ } \