Skip to content

Commit 434837b

Browse files
committed
⬆️ [SML] Version 1.1.2
Problem: - Support of GCC >= 10 has been fixed. Solution: - Update the minor version to `1.1.2`
1 parent b8ac415 commit 434837b

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

.mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
copyright: Copyright © 2016-2019
1+
copyright: Copyright © 2016-2020
22
site_name: "[Boost].SML"
33
site_url: http://boost-experimental.github.io/sml
44
site_author: Kris Jusiak

doc/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## [1.1.2] - 2020-06-14
2+
- **Additions**
3+
- Support for GCC-10
4+
>
5+
- **Bug Fixes**
6+
- [Issues](https://github.com/boost-experimental/sml/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aclosed+closed%3A2020-07-17..2020-06-14+)
7+
>
8+
- **Contributions**
9+
- [erikzenkerLogmein](https://github.com/erikzenkerLogmein)
10+
111
## [1.1.1] - 2020-05-17
212
- **Additions**
313
- Support for Clang-8.0/9.0/10.0
@@ -58,6 +68,7 @@
5868
##[1.0.0] - 2016-01-28
5969
- Initial version
6070

71+
[1.1.2]: https://github.com/boost-experimental/sml/compare/v1.1.1...v1.1.2
6172
[1.1.1]: https://github.com/boost-experimental/sml/compare/v1.1.0...v1.1.1
6273
[1.1.0]: https://github.com/boost-experimental/sml/compare/v1.0.0...v1.1.0
6374
[1.0.1]: https://github.com/boost-experimental/sml/compare/v1.0.0...v1.0.1

doc/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Introduction
1515
| Your scalable C++14 one header only State Machine Library with no dependencies ([__Try it online!__](http://boost-experimental.github.io/sml/examples/index.html#hello-world)) | <a class="github-button" href="https://github.com/boost-experimental/sml" data-style="mega" data-count-href="/boost-experimental/sml/stargazers" data-count-api="/repos/boost-experimental/sml#stargazers_count" data-count-aria-label="# stargazers on GitHub" aria-label="Star boost-experimental/sml on GitHub">GitHub</a> |
1616

1717
<div class="important">
18-
<h3 class="wy-text-neutral"><span class="fa fa-info-circle wy-text-info"></span>&nbsp; Latest Release: <b>v1.1.0</b> (Jan 8, 2019)</h3>
18+
<h3 class="wy-text-neutral"><span class="fa fa-info-circle wy-text-info"></span>&nbsp; Latest Release: <b>v1.1.2</b> (Jul 14, 2020)</h3>
1919
<a href="https://github.com/boost-experimental/sml/releases" class="btn btn-success" style="margin-bottom:8px;" role="button"><span class="fa fa-download"></span>&nbsp; <b>Download</b></a> &nbsp;&nbsp;&nbsp;&nbsp; <a href="CHANGELOG/index.html" class="btn btn-info" style="margin-bottom:8px;" role="button"><span class="fa fa-reorder"></span>&nbsp; <b>Changelog</b></a> &nbsp;&nbsp;&nbsp;&nbsp; <a href="tutorial/index.html" class="btn btn-warning" style="margin-bottom:8px;" role="button"><span class="fa fa-gear"></span>&nbsp; <b>Tutorial</b></a> &nbsp;&nbsp;&nbsp;&nbsp; <a href="examples/index.html" class="btn btn-danger" style="margin-bottom:8px;" role="button"><span class="fa fa-book"></span>&nbsp; <b>Examples</b></a>
2020
</div>
2121

include/boost/sml.hpp

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

0 commit comments

Comments
 (0)