Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,21 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.2.00] 2025-01-17
### Changed

- Fix a bug that could lead to a segmentation fault when MHD+Fargo+MPI (with X3 domain decomposition) are all enabled (#295)
- Fix a bug that could result in an incorrect magnetic field when initialising B from the vector potential in non-axisymmetric spherical geometry (#293)
- Fix a bug that could result in Idefix believing the MPI library is not Cuda aware for some versions of OpenMPI (#310)
- Ensure that the behaviour in 1D Spherical geometry is identical to Pluto (#291)

### Added

- Add the python interface "pydefix", allowing users to initialise and analyse Idefix simulations live from Python without writing any file (#277)
- Add the native Idefix coordinates in VTK file to simplify postprocessing (#292)
- Add code testing on CPU targets using gcc and Intel Oneapi (#300)


## [2.1.02] 2024-10-24
### Changed

Expand Down
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ endif()
set (CMAKE_CXX_STANDARD 17)

set(Idefix_VERSION_MAJOR 2)
set(Idefix_VERSION_MINOR 1)
set(Idefix_VERSION_PATCH 02)
set(Idefix_VERSION_MINOR 2)
set(Idefix_VERSION_PATCH 00)

project (idefix VERSION 2.1.02)
project (idefix VERSION 2.2.00)
option(Idefix_MHD "enable MHD" OFF)
option(Idefix_MPI "enable Message Passing Interface parallelisation" OFF)
option(Idefix_HIGH_ORDER_FARGO "Force Fargo to use a PPM reconstruction scheme" OFF)
Expand Down
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
author = 'Geoffroy Lesur'

# The full version, including alpha/beta/rc tags
release = '2.1.02'
release = '2.2.00'



Expand Down
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//@HEADER
// ************************************************************************
//
// IDEFIX v 2.1.00
// IDEFIX v 2.2.00
//
// ************************************************************************
//@HEADER
Expand Down
Loading