From ebadb64b6e8ba81271bc5aef9f8ee6d19aa0bfe7 Mon Sep 17 00:00:00 2001 From: Mathieu Champlon Date: Sat, 28 Sep 2024 12:13:32 +0200 Subject: [PATCH 1/3] Prepare v2.0.0 release --- doc/changelog.qbk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/changelog.qbk b/doc/changelog.qbk index 56a5f9c..e659c1c 100644 --- a/doc/changelog.qbk +++ b/doc/changelog.qbk @@ -7,15 +7,15 @@ [section Changelog] -[section Unreleased] -Released - +[section 2.0.0] +Released 29 September 2024 * Allow auto-deducing signature in `MOCK_METHOD_(NON_)CONST` * Replaced Boost facilities with std:: equivalents where existing in C++14 * Removed MOCK_*_TPL as they are no longer required, use the non _TPL variant even for templates * Added MOCK_PROTECT_SIGNATURE to pass function signatures with commas in the return type * Remove support for protecting function signatures via BOOST_IDENTITY_TYPE, use MOCK_PROTECT_SIGNATURE instead -* Add support for unlimitted number of arguments and sequences making MOCK_MAX_ARGS and MOCK_MAX_SEQUENCES superflous +* Add support for unlimited number of arguments and sequences making MOCK_MAX_ARGS and MOCK_MAX_SEQUENCES superflous [endsect] From 9d5689a5883bcdf9da5c57b7cdc9435c2c25a08e Mon Sep 17 00:00:00 2001 From: Mathieu Champlon Date: Sat, 28 Sep 2024 12:15:32 +0200 Subject: [PATCH 2/3] Bump requirement to a C++14 compiler --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f4a8dff..e9e284c 100644 --- a/README.md +++ b/README.md @@ -8,4 +8,4 @@ Distributed under the [Boost Software License, Version 1.0](http://boost.org/LIC [![Build status](https://ci.appveyor.com/api/projects/status/459hvqkb5rts4hw7?svg=true)](https://ci.appveyor.com/project/mat007/turtle) [![Coverage Status](https://coveralls.io/repos/mat007/turtle/badge.png)](https://coveralls.io/r/mat007/turtle) -Boost and a C++11 compatible compiler is required. +Boost and a C++14 compatible compiler is required. From 5b498ff5518b221412aafab29d27fd42f9b9e867 Mon Sep 17 00:00:00 2001 From: Mathieu Champlon Date: Sat, 28 Sep 2024 12:21:38 +0200 Subject: [PATCH 3/3] Add more prominent link to documentation --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index e9e284c..d205f36 100644 --- a/README.md +++ b/README.md @@ -9,3 +9,5 @@ Distributed under the [Boost Software License, Version 1.0](http://boost.org/LIC [![Coverage Status](https://coveralls.io/repos/mat007/turtle/badge.png)](https://coveralls.io/r/mat007/turtle) Boost and a C++14 compatible compiler is required. + +More information in the [documentation](http://turtle.sourceforge.net).