From af74ce61fa4614b8f55942ca865947c347b0fe46 Mon Sep 17 00:00:00 2001 From: bretth Date: Fri, 21 Nov 2025 12:51:07 +0100 Subject: [PATCH 1/3] Updating version number --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 73e4690..0d02ebf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pythermogis" -version = "1.2.0" +version = "1.2.1" description = "This repository is used as a python API for the ThermoGIS Doublet simulations" authors = [ { name = "Hen Brett", email = "hen.brett@tno.nl" }, -- GitLab From c0e417bfc3883ec4ba3f497368c780a3346df525 Mon Sep 17 00:00:00 2001 From: bretth Date: Fri, 21 Nov 2025 12:55:22 +0100 Subject: [PATCH 2/3] adding information to the change log --- docs/changelog.md | 7 +++++++ pixi.lock | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index 73e5dc2..27ac97c 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -8,3 +8,10 @@ Additonally, setting of the THERMOGIS_JAR and JAVA_HOME environment variables ca This is particularly useful for users who do not have admin rights. We also recognise that having to replace the Jar file everytime we update it is clunky and we will be working hard to remove this necessity in future updates. + +## v1.2.1 (21-11-2025) +Fixing a bug due to the update in the Jar file, calculateDoubletPerformance in the Java source code now returns Null if one of the optimizers failed. Pythermogis was still expecting a DoubletOutput class with all values set to -9999 in case of optimizer failure. + +Additionally: + - two functions have been added to print out the environment variables THERMOGIS_JAR and JAVA_HOME. This enables users to debug if their are issues with their installation + diff --git a/pixi.lock b/pixi.lock index 0f624af..b3ca555 100644 --- a/pixi.lock +++ b/pixi.lock @@ -4829,8 +4829,8 @@ packages: timestamp: 1740946648058 - pypi: ./ name: pythermogis - version: 1.2.0 - sha256: 50c9d857c9314b246b28d7e610647475414c718d839408818aa4f441813b51a7 + version: 1.2.1 + sha256: 0ae9336fdba95931a8e5b2b0ce4a61acd3bcd3c3d685b2292b11e436d43245b0 requires_dist: - jpype1>=1.5.2,<2 - xarray==2024.9.0.* -- GitLab From e12d7ceeb947f908c31f3aac6665319ae2060c86 Mon Sep 17 00:00:00 2001 From: bretth Date: Fri, 21 Nov 2025 12:55:52 +0100 Subject: [PATCH 3/3] adding information to the change log --- docs/changelog.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/changelog.md b/docs/changelog.md index 27ac97c..24a8d1c 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -10,7 +10,8 @@ This is particularly useful for users who do not have admin rights. We also recognise that having to replace the Jar file everytime we update it is clunky and we will be working hard to remove this necessity in future updates. ## v1.2.1 (21-11-2025) -Fixing a bug due to the update in the Jar file, calculateDoubletPerformance in the Java source code now returns Null if one of the optimizers failed. Pythermogis was still expecting a DoubletOutput class with all values set to -9999 in case of optimizer failure. +Fixing a bug caused by the update in the Jar file. calculateDoubletPerformance in the Java source code returns Null if one of the optimizers failed. +Pythermogis was still expecting a DoubletOutput class with all values set to -9999 in case of optimizer failure. Additionally: - two functions have been added to print out the environment variables THERMOGIS_JAR and JAVA_HOME. This enables users to debug if their are issues with their installation -- GitLab