diff --git a/CMakeLists.txt b/CMakeLists.txt index 017c77c8..0fa3a454 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -184,9 +184,9 @@ project(${project_name}) # Project version set(COOLPROP_VERSION_MAJOR 7) -set(COOLPROP_VERSION_MINOR 1) -set(COOLPROP_VERSION_PATCH 1) -set(COOLPROP_VERSION_REVISION dev) +set(COOLPROP_VERSION_MINOR 2) +set(COOLPROP_VERSION_PATCH 0) +set(COOLPROP_VERSION_REVISION ) set(COOLPROP_VERSION "${COOLPROP_VERSION_MAJOR}.${COOLPROP_VERSION_MINOR}.${COOLPROP_VERSION_PATCH}${COOLPROP_VERSION_REVISION}" ) diff --git a/Web/coolprop/changelog.rst b/Web/coolprop/changelog.rst index db6c1e7d..c73b2b7b 100644 --- a/Web/coolprop/changelog.rst +++ b/Web/coolprop/changelog.rst @@ -1,6 +1,36 @@ Changelog for CoolProp ====================== +7.2.0 +----- + +Highlights: + +* Added support for python 3.14 +* Modernized the build system to use scikit-build-core, and supports uv now too +* Added methods for ideal gas properties +* More tweaks to iterative routines + +Issues closed: + +* `#2589 `_ : Properties of Air as an Ideal Gas +* `#2622 `_ : R123 1phase PY issue + +Pull requests merged: + +* `#2579 `_ : Improvements to mixture pair management +* `#2624 `_ : Add Windows Instructions and example for Fluent Wrapper +* `#2625 `_ : Faster alpha0 +* `#2626 `_ : Add Ideal gas methods +* `#2627 `_ : Add fallback method for density solver for bad EOS +* `#2628 `_ : CI add InnoSetup +* `#2630 `_ : Python 3.14 support? +* `#2631 `_ : RST->MD +* `#2632 `_ : Modernize Python build system to use scikit-build-core +* `#2633 `_ : Fix header gen on windows + + + 7.1.0 -----