diff --git a/.mkdocs.yml b/.mkdocs.yml index b884e850..14f44e6f 100644 --- a/.mkdocs.yml +++ b/.mkdocs.yml @@ -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 diff --git a/doc/CHANGELOG.md b/doc/CHANGELOG.md index 9360791e..e92e350b 100644 --- a/doc/CHANGELOG.md +++ b/doc/CHANGELOG.md @@ -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 @@ -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 diff --git a/doc/index.md b/doc/index.md index 928e4172..6ef04e23 100644 --- a/doc/index.md +++ b/doc/index.md @@ -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)) | GitHub |
-

  Latest Release: v1.1.0 (Jan 8, 2019)

+

  Latest Release: v1.1.2 (Jul 14, 2020)

  Download        Changelog        Tutorial        Examples
diff --git a/include/boost/sml.hpp b/include/boost/sml.hpp index 598693cb..948b6083 100644 --- a/include/boost/sml.hpp +++ b/include/boost/sml.hpp @@ -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 \ } \ } \