From 3dde58a00c48b47cf8c27de2c7b6aaf083c7f33c Mon Sep 17 00:00:00 2001 From: Peter Meisrimel Date: Wed, 27 Nov 2024 09:48:08 +0100 Subject: [PATCH] Fixing changelog --- CHANGELOG | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 4fd3ae55..0e042b87 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -4,6 +4,11 @@ * Removed tests from the PyFMI installation. * Moved test files from src/pyfmi/tests/... to tests/files/... * Moved test_util.* from src/pyfmi/tests to src/pyfmi + * Deprecated "get_categories" function for "FMUModelBase2" and "CoupledFMUModelBase", use "get_log_categories" instead. + * Added function "get_log_category_descriptions" to "FMUModelBase2" and "CoupledFMUModelBase" for retreiving log category descriptions. + * "FMUModelBase2.get_log_categories()" and "FMUModelBase2.set_debug_logging()" now operate on lists of strings instead of bytes. + * Calling "FMUModelBase2.set_debug_logging()" with "logging_on = True" will set the FMU log level to 7 (ALL). + * Removed error check that log categories set via "FMUModelBase2.set_debug_logging()" are exposed log categories. --- PyFMI-2.15.0 --- * Changed custom result handling for the Master algorithm to instead use a single ResultHandler for each model. @@ -12,11 +17,6 @@ * Added option to limit the size of the result ("result_max_size"), default set to 2GB. * Added method ResultDymolaBinary.get_variables_data. Included some minor refactorization. The new method allows for retrieving partial trajectories, and multiple trajectories at once. - * Deprecated "get_categories" function for "FMUModelBase2" and "CoupledFMUModelBase", use "get_log_categories" instead. - * Added function "get_log_category_descriptions" to "FMUModelBase2" and "CoupledFMUModelBase" for retreiving log category descriptions. - * "FMUModelBase2.get_log_categories()" and "FMUModelBase2.set_debug_logging()" now operate on lists of strings instead of bytes. - * Calling "FMUModelBase2.set_debug_logging()" with "logging_on = True" will set the FMU log level to 7 (ALL). - * Removed error check that log categories set via "FMUModelBase2.set_debug_logging()" are exposed log categories. --- PyFMI-2.14.0 --- * Updated the error message displayed when loading FMUs with needsExecutionTool set to True.