Skip to content

Commit 8d13e69

Browse files
committed
Merge branch 'master' into develop
2 parents 4267c4f + d0e8220 commit 8d13e69

3 files changed

Lines changed: 23 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,26 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [2.1.02] 2024-10-24
8+
### Changed
9+
10+
- Fix a bug that could lead to corrupted VTK file when using single precision arithmetic (#255)
11+
- Fix a bug that could lead to incorrect central mass gravitational potential upon restart (#287)
12+
- Changed the way magnetic field is reconstructed when using grid coarsening to reduce roundoff errors on div(B). This can have an impact on the results of models using grid coarsening+MHD (#284)
13+
- Ensure that XDMF outputs are precision agnostic (#261)
14+
- Bump up Kokkos version to 4.4.01 (#289)
15+
- Check that writes are successfull in serial, otherwise throw an error (#260)
16+
- Ensure that shock flattening flags can be modified by user (#260)
17+
- Throw an error when user enables Fargo without enough DIMENSIONS (#250)
18+
- Fix linting errors following upgrade to cpplint 2.0 (#278, #279, #281)
19+
- Update idfx_io to numpy 2.0 (#283)
20+
21+
### Added
22+
23+
- Allow the user to define the grid and boundary conditions only on active dimensions (#274)
24+
- Configuration for Nvidia H100 on Jean Zay in the documentation
25+
26+
727
## [2.1.01] 2024-06-20
828
### Changed
929
- Fix a bug that could result in too restrictive timesteps when resistivity is enabled (#244)

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ set (CMAKE_CXX_STANDARD 17)
66

77
set(Idefix_VERSION_MAJOR 2)
88
set(Idefix_VERSION_MINOR 1)
9-
set(Idefix_VERSION_PATCH 01)
9+
set(Idefix_VERSION_PATCH 02)
1010

11-
project (idefix VERSION 2.1.00)
11+
project (idefix VERSION 2.1.02)
1212
option(Idefix_MHD "enable MHD" OFF)
1313
option(Idefix_MPI "enable Message Passing Interface parallelisation" OFF)
1414
option(Idefix_HIGH_ORDER_FARGO "Force Fargo to use a PPM reconstruction scheme" OFF)

doc/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
author = 'Geoffroy Lesur'
2424

2525
# The full version, including alpha/beta/rc tags
26-
release = '2.1.01'
26+
release = '2.1.02'
2727

2828

2929

0 commit comments

Comments
 (0)