Skip to content

Commit

Permalink
⬆️ [SML] Version 1.1.2
Browse files Browse the repository at this point in the history
Problem:
- Support of GCC >= 10 has been fixed.

Solution:
- Update the minor version to `1.1.2`
  • Loading branch information
krzysztof-jusiak committed Jun 14, 2020
1 parent b8ac415 commit 434837b
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
copyright: Copyright © 2016-2019
copyright: Copyright © 2016-2020
site_name: "[Boost].SML"
site_url: http://boost-experimental.github.io/sml
site_author: Kris Jusiak
Expand Down
11 changes: 11 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## [1.1.2] - 2020-06-14
- **Additions**
- Support for GCC-10
>
- **Bug Fixes**
- [Issues](https://github.com/boost-experimental/sml/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aclosed+closed%3A2020-07-17..2020-06-14+)
>
- **Contributions**
- [erikzenkerLogmein](https://github.com/erikzenkerLogmein)

## [1.1.1] - 2020-05-17
- **Additions**
- Support for Clang-8.0/9.0/10.0
Expand Down Expand Up @@ -58,6 +68,7 @@
##[1.0.0] - 2016-01-28
- Initial version

[1.1.2]: https://github.com/boost-experimental/sml/compare/v1.1.1...v1.1.2
[1.1.1]: https://github.com/boost-experimental/sml/compare/v1.1.0...v1.1.1
[1.1.0]: https://github.com/boost-experimental/sml/compare/v1.0.0...v1.1.0
[1.0.1]: https://github.com/boost-experimental/sml/compare/v1.0.0...v1.0.1
Expand Down
2 changes: 1 addition & 1 deletion doc/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Introduction
| 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> |

<div class="important">
<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>
<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>
<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>
</div>

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,11 +9,11 @@
#if (__cplusplus < 201305L && _MSC_VER < 1900)
#error "[Boost].SML requires C++14 support (Clang-3.4+, GCC-5.1+, MSVC-2015+)"
#else
#define BOOST_SML_VERSION 1'1'1
#define BOOST_SML_VERSION 1'1'2
#define BOOST_SML_NAMESPACE_BEGIN \
namespace boost { \
namespace sml { \
inline namespace v1_1_1 {
inline namespace v1_1_2 {
#define BOOST_SML_NAMESPACE_END \
} \
} \
Expand Down

0 comments on commit 434837b

Please sign in to comment.