Skip to content

Commit 8015e09

Browse files
committed
⬆️ 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
1 parent 9167ba4 commit 8015e09

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ configure_package_config_file(
177177

178178
write_basic_package_version_file(
179179
${CMAKE_CURRENT_BINARY_DIR}/smlConfigVersion.cmake
180-
VERSION 1.1.11
180+
VERSION 1.1.13
181181
COMPATIBILITY SameMajorVersion
182182
)
183183

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -313,6 +313,8 @@ send: 42
313313
* [Plant UML Integration](https://boost-ext.github.io/sml/examples.html#plant-uml-integration)
314314
* [FAQ](https://boost-ext.github.io/sml/faq.html)
315315
* [CHANGELOG](https://boost-ext.github.io/sml/CHANGELOG.html)
316+
* [[1.1.13] - 2025-12-01](https://boost-ext.github.io/sml/CHANGELOG.html#1113-2025-12-01)
317+
* [[1.1.12] - 2025-04-02](https://boost-ext.github.io/sml/CHANGELOG.html#1112-2025-04-02)
316318
* [[1.1.11] - 2024-03-09](https://boost-ext.github.io/sml/CHANGELOG.html#1111-2024-03-09)
317319
* [[1.1.10] - 2024-03-09](https://boost-ext.github.io/sml/CHANGELOG.html#1110-2024-03-09)
318320
* [[1.1.9] - 2023-09-13](https://boost-ext.github.io/sml/CHANGELOG.html#119-2023-09-13)

doc/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## [1.1.13] - 2025-12-01
2+
- Changes
3+
- https://github.com/boost-ext/sml/compare/v1.1.12...v1.1.13
4+
5+
## [1.1.12] - 2025-04-02
6+
- Changes
7+
- https://github.com/boost-ext/sml/compare/v1.1.11...v1.1.12
8+
19
## [1.1.11] - 2024-03-09
210
- **Bug Fixes**
311
- MSVC typename

include/boost/sml.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
#if defined(__ICCARM__) && __IAR_SYSTEMS_ICC__ < 8
1313
#error "[Boost::ext].SML requires C++14 support (IAR C/C++ ARM 8.1+)"
1414
#endif
15-
#define BOOST_SML_VERSION 1'1'11
15+
#define BOOST_SML_VERSION 1'1'13
1616
#define BOOST_SML_NAMESPACE_BEGIN \
1717
namespace boost { \
1818
inline namespace ext { \
1919
namespace sml { \
20-
inline namespace v1_1_11 {
20+
inline namespace v1_1_13 {
2121
#define BOOST_SML_NAMESPACE_END \
2222
} \
2323
} \

0 commit comments

Comments
 (0)