Skip to content

Commit

Permalink
⬆️ 1.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
kris-jusiak committed Sep 13, 2023
1 parent 03a8621 commit 751b6f1
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
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.8
VERSION 1.1.9
COMPATIBILITY SameMajorVersion
)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,7 @@ 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.9] - 2023-09-13](https://boost-ext.github.io/sml/CHANGELOG.html#119-2023-09-13)
* [[1.1.6] - 2022-09-07](https://boost-ext.github.io/sml/CHANGELOG.html#116-2022-09-07)
* [[1.1.5] - 2022-03-23](https://boost-ext.github.io/sml/CHANGELOG.html#115-2022-03-23)
* [[1.1.4] - 2021-02-16](https://boost-ext.github.io/sml/CHANGELOG.html#114-2021-02-16)
Expand All @@ -322,7 +323,6 @@ send: 42
* [[1.1.0] - 2019-01-08](https://boost-ext.github.io/sml/CHANGELOG.html#110-2019-01-08)
* [[1.0.1] - 2016-05-06](https://boost-ext.github.io/sml/CHANGELOG.html#101-2016-05-06)
* [[1.0.0] - 2016-01-28](https://boost-ext.github.io/sml/CHANGELOG.html#100-2016-01-28)

[](GENERATE_TOC_END)

---
Expand Down
3 changes: 3 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## [1.1.9] - 2023-09-13
- [Issues](https://github.com/boost-ext/sml/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aclosed+closed%3A2022-09-07..2023-09-13+)

## [1.1.6] - 2022-09-07
- **Bug Fixes**
- [Issues](https://github.com/boost-ext/sml/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aclosed+closed%3A2022-03-23..2022-09-07+)
Expand Down
2 changes: 1 addition & 1 deletion doc/scripts/update_readme_toc.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
for line in md:
if line.startswith('##'):
name = line.replace('# ', '').replace('#', '')[:-1]
id = filter(lambda c: c == '-' or c == '_' or str.isalnum(c), name.lower().replace(" ", "-")).replace("--", "")
id = "".join(filter(lambda c: c == '-' or c == '_' or str.isalnum(c), name.lower().replace(" ", "-"))).replace("--", "")
print(' * [' + name + '](' + sys.argv[4] + '/' + index[1][1:-4] + ext + "#" + id + ')')
print
elif line.startswith('[](GENERATE_TOC_END)'):
Expand Down
4 changes: 2 additions & 2 deletions include/boost/sml.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
#if (__cplusplus < 201305L && _MSC_VER < 1900)
#error "[Boost::ext].SML requires C++14 support (Clang-3.4+, GCC-5.1+, MSVC-2015+)"
#else
#define BOOST_SML_VERSION 1'1'8
#define BOOST_SML_VERSION 1'1'9
#define BOOST_SML_NAMESPACE_BEGIN \
namespace boost { \
inline namespace ext { \
namespace sml { \
inline namespace v1_1_8 {
inline namespace v1_1_9 {
#define BOOST_SML_NAMESPACE_END \
} \
} \
Expand Down

0 comments on commit 751b6f1

Please sign in to comment.