From 7d4e32def59a31598413213bda12b3ef07f2a770 Mon Sep 17 00:00:00 2001 From: Iason Batzianoulis Date: Mon, 23 Sep 2024 18:46:45 +0200 Subject: [PATCH] Release v0.2.4 (#89) --- CHANGELOG.rst | 16 ++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f096d5c8..de907986 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,22 @@ Changelog --------- +0.2.4 (2024-09-23) +****************** + +New: + +- Auth tokens are now cached in file system and get re-authenticated in a parallel fashion. +- Invalid refresh token now triggers a reauth instead of crashing. +- `build_preset` option in :py:class:`ModelConfiguration` can now be one of `debug`, `1_day`, `2_days`, `7_days`. +- Model Evaluation Report data (csv file) can now be downloaded with :py:meth:`download_mer_data`. +- Typing improvements; introducing `JSON` type is introduced and `APIResponse` type is updated to include `JSON` type. +- New property :py:meth:`Prediction.raw_confidence_score` is added to :py:class:`Prediction`, which returns the raw confidence score. + +Fix: + +- Fixed the error where :py:meth:`data` was not in coordinance with the BE response. :py:meth:`data` now runs without errors. + 0.2.3 (2024-08-21) ****************** diff --git a/pyproject.toml b/pyproject.toml index de64c695..201c1b0e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "flit_core.buildapi" [project] name = "ansys-simai-core" -version = "0.2.3" +version = "0.2.4" description = "A python wrapper for Ansys SimAI" authors = [ {name = "ANSYS, Inc.", email = "pyansys.core@ansys.com"},