Bump version to get py 3.14 wheels

This commit is contained in:
Ian Bell
2025-11-01 09:26:17 -04:00
parent 471bf493be
commit 98b3523d5d
2 changed files with 33 additions and 3 deletions

View File

@@ -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}"
)

View File

@@ -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 <https://github.com/CoolProp/CoolProp/issues/2589>`_ : Properties of Air as an Ideal Gas
* `#2622 <https://github.com/CoolProp/CoolProp/issues/2622>`_ : R123 1phase PY issue
Pull requests merged:
* `#2579 <https://github.com/CoolProp/CoolProp/pull/2579>`_ : Improvements to mixture pair management
* `#2624 <https://github.com/CoolProp/CoolProp/pull/2624>`_ : Add Windows Instructions and example for Fluent Wrapper
* `#2625 <https://github.com/CoolProp/CoolProp/pull/2625>`_ : Faster alpha0
* `#2626 <https://github.com/CoolProp/CoolProp/pull/2626>`_ : Add Ideal gas methods
* `#2627 <https://github.com/CoolProp/CoolProp/pull/2627>`_ : Add fallback method for density solver for bad EOS
* `#2628 <https://github.com/CoolProp/CoolProp/pull/2628>`_ : CI add InnoSetup
* `#2630 <https://github.com/CoolProp/CoolProp/pull/2630>`_ : Python 3.14 support?
* `#2631 <https://github.com/CoolProp/CoolProp/pull/2631>`_ : RST->MD
* `#2632 <https://github.com/CoolProp/CoolProp/pull/2632>`_ : Modernize Python build system to use scikit-build-core
* `#2633 <https://github.com/CoolProp/CoolProp/pull/2633>`_ : Fix header gen on windows
7.1.0
-----