Skip to content

Commit 751b6f1

Browse files
committed
⬆️ 1.1.9
1 parent 03a8621 commit 751b6f1

5 files changed

Lines changed: 8 additions & 5 deletions

File tree

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.8
180+
VERSION 1.1.9
181181
COMPATIBILITY SameMajorVersion
182182
)
183183

README.md

Lines changed: 1 addition & 1 deletion
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.9] - 2023-09-13](https://boost-ext.github.io/sml/CHANGELOG.html#119-2023-09-13)
316317
* [[1.1.6] - 2022-09-07](https://boost-ext.github.io/sml/CHANGELOG.html#116-2022-09-07)
317318
* [[1.1.5] - 2022-03-23](https://boost-ext.github.io/sml/CHANGELOG.html#115-2022-03-23)
318319
* [[1.1.4] - 2021-02-16](https://boost-ext.github.io/sml/CHANGELOG.html#114-2021-02-16)
@@ -322,7 +323,6 @@ send: 42
322323
* [[1.1.0] - 2019-01-08](https://boost-ext.github.io/sml/CHANGELOG.html#110-2019-01-08)
323324
* [[1.0.1] - 2016-05-06](https://boost-ext.github.io/sml/CHANGELOG.html#101-2016-05-06)
324325
* [[1.0.0] - 2016-01-28](https://boost-ext.github.io/sml/CHANGELOG.html#100-2016-01-28)
325-
326326
[](GENERATE_TOC_END)
327327

328328
---

doc/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## [1.1.9] - 2023-09-13
2+
- [Issues](https://github.com/boost-ext/sml/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aclosed+closed%3A2022-09-07..2023-09-13+)
3+
14
## [1.1.6] - 2022-09-07
25
- **Bug Fixes**
36
- [Issues](https://github.com/boost-ext/sml/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aclosed+closed%3A2022-03-23..2022-09-07+)

doc/scripts/update_readme_toc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
for line in md:
2121
if line.startswith('##'):
2222
name = line.replace('# ', '').replace('#', '')[:-1]
23-
id = filter(lambda c: c == '-' or c == '_' or str.isalnum(c), name.lower().replace(" ", "-")).replace("--", "")
23+
id = "".join(filter(lambda c: c == '-' or c == '_' or str.isalnum(c), name.lower().replace(" ", "-"))).replace("--", "")
2424
print(' * [' + name + '](' + sys.argv[4] + '/' + index[1][1:-4] + ext + "#" + id + ')')
2525
print
2626
elif line.startswith('[](GENERATE_TOC_END)'):

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'8
12+
#define BOOST_SML_VERSION 1'1'9
1313
#define BOOST_SML_NAMESPACE_BEGIN \
1414
namespace boost { \
1515
inline namespace ext { \
1616
namespace sml { \
17-
inline namespace v1_1_8 {
17+
inline namespace v1_1_9 {
1818
#define BOOST_SML_NAMESPACE_END \
1919
} \
2020
} \

0 commit comments

Comments
 (0)