Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
--- CHANGELOG ---
--- PyFMI-FUTURE ---

--- PyFMI-2.21.0 ---
* Fixed a crash with the `Master` algorithm option `block_initialization`.
* Fixed a result handling issue for `dynamic_diagnostics = True` and `["<solver>_options"]["clock_step"] = False`.
* Fixed an issue for the `Master` algorithm where connection values could be initialized incorrectly, when FMUs
Expand Down
11 changes: 11 additions & 0 deletions doc/sphinx/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@
==========
Changelog
==========
--- PyFMI-2.21.0 ---
* Fixed a crash with the `Master` algorithm option `block_initialization`.
* Fixed a result handling issue for `dynamic_diagnostics = True` and `["<solver>_options"]["clock_step"] = False`.
* Fixed an issue for the `Master` algorithm where connection values could be initialized incorrectly, when FMUs
were initialized separately and using `step_size_downsampling_factor`.
* Enabled use of `pathlib.Path` objects for:
* Paths when loading FMUs
* `log_file_name` when loading FMUs
* `pyfmi.common.log.parse_xml_log` & `extract_xml_log`, including `fmu.extract_xml_log()`.
* `result_file_name` as simulation option and manual use of `ResultReader` classes

--- PyFMI-2.20.1 ---
* Resolved issue where caching in result handling was too persistent and could prevent automatic garbage collection.

Expand Down
4 changes: 2 additions & 2 deletions doc/sphinx/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@
# built documents.
#
# The short X.Y version.
version = '2.20.1'
version = '2.21.0'
# The full version, including alpha/beta/rc tags.
release = '2.20.1'
release = '2.21.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
Loading