From b5dbdc858d7cc5173639ea6fb901c6896ce1c7f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Fri, 28 Jan 2022 23:55:27 +0100 Subject: [PATCH] Link to the v2-v3 migration docs from release notes --- docs/release-notes.md | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/docs/release-notes.md b/docs/release-notes.md index d19a0902..53e4fd52 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -55,19 +55,9 @@ This also means that to get all of Catch2's functionality in a test file, you have to include multiple headers.** -For quick'n'dirty migration, you can replace the old `#include ` -with `#include `. This is a (one of) convenience -header(s) that brings in _all_ of headers in Catch2. By doing this, -you should be able to migrate instantly, but at the cost of (significantly) -increased compilation times. You should prefer piecemeal including -headers that are actually required by your test code. - -The basic set of functionality (`TEST_CASE`, `SECTION`, `REQUIRE`) is in -`catch2/catch_test_macros.hpp`. Matchers are in `matchers` subfolder, -generators in `generators` subfolder, and so on. - -Note that documentation has not yet been updated to account for the -new design. +You probably want to look into the [migration docs](migrate-v2-to-v3.md#top), +which were written to help people coming from v2.x.x versions to the +v3 releases. ### FAQ