Skip to content

Commit b7df618

Browse files
committed
⬆️ v1.1.11
1 parent adfb601 commit b7df618

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-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.10
180+
VERSION 1.1.11
181181
COMPATIBILITY SameMajorVersion
182182
)
183183

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -313,6 +313,7 @@ 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.11] - 2024-03-09](https://boost-ext.github.io/sml/CHANGELOG.html#1111-2024-03-09)
316317
* [[1.1.10] - 2024-03-09](https://boost-ext.github.io/sml/CHANGELOG.html#1110-2024-03-09)
317318
* [[1.1.9] - 2023-09-13](https://boost-ext.github.io/sml/CHANGELOG.html#119-2023-09-13)
318319
* [[1.1.6] - 2022-09-07](https://boost-ext.github.io/sml/CHANGELOG.html#116-2022-09-07)

doc/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [1.1.11] - 2024-03-09
2+
- **Bug Fixes**
3+
- MSVC typename
4+
5+
- **Additions**
6+
- [performance] switch as defult dispatch_policy
7+
18
## [1.1.10] - 2024-03-09
29
- **Bug Fixes**
310
- [Issues](https://github.com/boost-ext/sml/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aclosed+closed%3A2023-09-13..2024-03-09+)

include/boost/sml.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
#if (__cplusplus < 201305L && _MSC_VER < 1900)
1010
#error "[Boost::ext].SML requires C++14 support (Clang-3.4+, GCC-5.1+, MSVC-2015+)"
1111
#else
12-
#define BOOST_SML_VERSION 1'1'10
12+
#define BOOST_SML_VERSION 1'1'11
1313
#define BOOST_SML_NAMESPACE_BEGIN \
1414
namespace boost { \
1515
inline namespace ext { \
1616
namespace sml { \
17-
inline namespace v1_1_10 {
17+
inline namespace v1_1_11 {
1818
#define BOOST_SML_NAMESPACE_END \
1919
} \
2020
} \

0 commit comments

Comments
 (0)