Skip to content

Commit 3f08e41

Browse files
committed
heyoka.py 7.2.1.
1 parent b005b6c commit 3f08e41

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ if(NOT CMAKE_BUILD_TYPE)
1717
FORCE)
1818
endif()
1919

20-
project(heyoka.py VERSION 7.2.0 LANGUAGES CXX C)
20+
project(heyoka.py VERSION 7.2.1 LANGUAGES CXX C)
2121

2222
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake" "${CMAKE_CURRENT_SOURCE_DIR}/cmake/yacma")
2323

doc/changelog.rst

+9
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33
Changelog
44
=========
55

6+
7.2.1 (2025-01-07)
7+
------------------
8+
9+
Fix
10+
~~~
11+
12+
- Work around a thread-safety issue in the erfa routines used
13+
to convert between UTC and TAI Julian dates.
14+
615
7.2.0 (2025-01-02)
716
------------------
817

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ requires = ['scikit-build-core', 'pybind11 >= 2.10', 'numpy >= 2']
44

55
[project]
66
name = 'heyoka'
7-
version = '7.2.0'
7+
version = '7.2.1'
88
description = "Python library for ODE integration via Taylor's method and LLVM"
99
readme = 'README.md'
1010
requires-python = '>=3.9'

tools/gha_manylinux.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ fi
3535
echo "PYTHON_DIR: ${PYTHON_DIR}"
3636

3737
# The heyoka version to be used for releases.
38-
export HEYOKA_VERSION_RELEASE="7.2.0"
38+
export HEYOKA_VERSION_RELEASE="7.2.1"
3939

4040
# Check if this is a release build.
4141
if [[ "${GITHUB_REF}" == "refs/tags/v"* ]]; then

0 commit comments

Comments
 (0)