Skip to content

Commit f35d7ec

Browse files
authored
Merge pull request #21 from lsst/tickets/DM-50434
DM-50434: Enable c++20
2 parents b58c049 + 38ce074 commit f35d7ec

4 files changed

Lines changed: 8 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
All notable changes to this project will be documented in this file.
44
This project adheres to [Semantic Versioning](https://semver.org/).
55

6+
### [0.2.0] 2025-04-29
7+
8+
* Changed: Updated default C++ standard to C++20 from C++17
9+
* See [DM-50434](https://rubinobs.atlassian.net/browse/DM-50434) for details.
10+
611
### [0.1.4] 2024-08-09
712

813
* Fixed: Python tests now force evaluator setup to prevent order dependence

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.5
1+
0.2.0

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ project(
33
'cpp',
44
version : files('VERSION'),
55
license : 'GPL-3.0-or-later',
6-
default_options : ['cpp_std=c++17',],
6+
default_options : ['cpp_std=c++20',],
77
)
88
add_project_arguments('-ffp-contract=off', language : 'cpp')
99

python/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project(
22
'libgauss2d_fit_python',
33
'cpp',
4-
default_options : ['cpp_std=c++17',],
4+
default_options : ['cpp_std=c++20',],
55
license : 'GPL-3.0-or-later',
66
version : run_command('cat', meson.source_root() / 'VERSION', check: true).stdout().strip(),
77
)

0 commit comments

Comments
 (0)