Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
)

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
8 changes: 8 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions include/boost/sml.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
} \
} \
Expand Down
Loading