Skip to content

Commit ab6c737

Browse files
committed
v3.2.1
1 parent 2460769 commit ab6c737

File tree

7 files changed

+149
-110
lines changed

7 files changed

+149
-110
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ if (CMAKE_BINARY_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
3131
endif()
3232

3333
project(Catch2
34-
VERSION 3.2.0 # CML version placeholder, don't delete
34+
VERSION 3.2.1 # CML version placeholder, don't delete
3535
LANGUAGES CXX
3636
# HOMEPAGE_URL is not supported until CMake version 3.12, which
3737
# we do not target yet.

docs/release-notes.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
# Release notes
44
**Contents**<br>
5+
[3.2.1](#321)<br>
56
[3.2.0](#320)<br>
67
[3.1.1](#311)<br>
78
[3.1.0](#310)<br>
@@ -53,6 +54,13 @@
5354

5455

5556

57+
## 3.2.1
58+
59+
### Improvements
60+
* Fix the reworked decomposer to work with older (pre 9) GCC versions (#2571)
61+
* **This required more significant changes to properly support C++20, there might be bugs.**
62+
63+
5664
## 3.2.0
5765

5866
### Improvements

extras/catch_amalgamated.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66
// SPDX-License-Identifier: BSL-1.0
77

8-
// Catch v3.2.0
9-
// Generated: 2022-11-16 19:30:16.114602
8+
// Catch v3.2.1
9+
// Generated: 2022-12-09 23:01:15.713081
1010
// ----------------------------------------------------------
1111
// This file is an amalgamation of multiple different files.
1212
// You probably shouldn't edit it directly.
@@ -2012,7 +2012,7 @@ namespace Catch {
20122012
}
20132013

20142014
Version const& libraryVersion() {
2015-
static Version version( 3, 2, 0, "", 0 );
2015+
static Version version( 3, 2, 1, "", 0 );
20162016
return version;
20172017
}
20182018

extras/catch_amalgamated.hpp

Lines changed: 134 additions & 103 deletions
Large diffs are not rendered by default.

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
project(
99
'catch2',
1010
'cpp',
11-
version: '3.2.0', # CML version placeholder, don't delete
11+
version: '3.2.1', # CML version placeholder, don't delete
1212
license: 'BSL-1.0',
1313
meson_version: '>=0.50.0',
1414
)

src/catch2/catch_version.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ namespace Catch {
3636
}
3737

3838
Version const& libraryVersion() {
39-
static Version version( 3, 2, 0, "", 0 );
39+
static Version version( 3, 2, 1, "", 0 );
4040
return version;
4141
}
4242

src/catch2/catch_version_macros.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010

1111
#define CATCH_VERSION_MAJOR 3
1212
#define CATCH_VERSION_MINOR 2
13-
#define CATCH_VERSION_PATCH 0
13+
#define CATCH_VERSION_PATCH 1
1414

1515
#endif // CATCH_VERSION_MACROS_HPP_INCLUDED

0 commit comments

Comments
 (0)