Skip to content

Commit

Permalink
v3.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
horenmar committed Dec 9, 2022
1 parent 2460769 commit ab6c737
Show file tree
Hide file tree
Showing 7 changed files with 149 additions and 110 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -31,7 +31,7 @@ if (CMAKE_BINARY_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
endif()

project(Catch2
VERSION 3.2.0 # CML version placeholder, don't delete
VERSION 3.2.1 # CML version placeholder, don't delete
LANGUAGES CXX
# HOMEPAGE_URL is not supported until CMake version 3.12, which
# we do not target yet.
Expand Down
8 changes: 8 additions & 0 deletions docs/release-notes.md
Expand Up @@ -2,6 +2,7 @@

# Release notes
**Contents**<br>
[3.2.1](#321)<br>
[3.2.0](#320)<br>
[3.1.1](#311)<br>
[3.1.0](#310)<br>
Expand Down Expand Up @@ -53,6 +54,13 @@



## 3.2.1

### Improvements
* Fix the reworked decomposer to work with older (pre 9) GCC versions (#2571)
* **This required more significant changes to properly support C++20, there might be bugs.**


## 3.2.0

### Improvements
Expand Down
6 changes: 3 additions & 3 deletions extras/catch_amalgamated.cpp
Expand Up @@ -5,8 +5,8 @@

// SPDX-License-Identifier: BSL-1.0

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

Version const& libraryVersion() {
static Version version( 3, 2, 0, "", 0 );
static Version version( 3, 2, 1, "", 0 );
return version;
}

Expand Down
237 changes: 134 additions & 103 deletions extras/catch_amalgamated.hpp

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion meson.build
Expand Up @@ -8,7 +8,7 @@
project(
'catch2',
'cpp',
version: '3.2.0', # CML version placeholder, don't delete
version: '3.2.1', # CML version placeholder, don't delete
license: 'BSL-1.0',
meson_version: '>=0.50.0',
)
Expand Down
2 changes: 1 addition & 1 deletion src/catch2/catch_version.cpp
Expand Up @@ -36,7 +36,7 @@ namespace Catch {
}

Version const& libraryVersion() {
static Version version( 3, 2, 0, "", 0 );
static Version version( 3, 2, 1, "", 0 );
return version;
}

Expand Down
2 changes: 1 addition & 1 deletion src/catch2/catch_version_macros.hpp
Expand Up @@ -10,6 +10,6 @@

#define CATCH_VERSION_MAJOR 3
#define CATCH_VERSION_MINOR 2
#define CATCH_VERSION_PATCH 0
#define CATCH_VERSION_PATCH 1

#endif // CATCH_VERSION_MACROS_HPP_INCLUDED

0 comments on commit ab6c737

Please sign in to comment.