You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+15-1Lines changed: 15 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,19 @@ All notable changes to libcosim will be documented in this file. This includes n
3
3
4
4
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html)
5
5
6
+
### [v0.10.0] - 2022-12-02
7
+
##### Changed
8
+
* GCC7 and GCC8 artifact builds have been removed, and GCC9 artifact builds added. This is currently the only supported GCC version.
9
+
* The file observer is now programmatically configurable, and there is no longer a need for clients to create a separate `LogConfig.xml` file upfront to specify it's configuration.
10
+
* The file observer no longer outputs headers as `variable name [reference, type, causality].` Instead only the variable name is output, and the extra data about each variable and the model itself is output in a separate metadata file, in YAML format. This will have the same filename as the CSV file with the simulation data, including the timestamp, with `_metadata` at the end.
11
+
* Using `find_variable` no longer throws an exception, but rather returns an optional value, which may be empty if the variable could not be found.
12
+
* Update to proxyfmu 0.2.9.
13
+
##### Added
14
+
* An asynchronous version of `simulate_until` is now available through the `execution` interface. This accepts
15
+
an optional end time parameter and launches the execution in a new thread.
16
+
* Support has been added for optionally specifying simulation end time (where only start time was supported) in `OspSystemStructure.xml`. If specified, end time will also be parsed and made available in the simulation configuration.
17
+
##### Fixed
18
+
6
19
### [v0.9.0] – 2022-04-05
7
20
##### Changed
8
21
* Removed fibers to simplify code and increase simulation performance. Concurrency must now be implemented in the master
@@ -160,7 +173,7 @@ algorithm, and `fixed_step_algorithm` has been modified to use a thread pool. ([
160
173
* introducing`orchestration` interface for classes that resolve model URIs of one or more specific URI schemes ([PR#233](https://github.com/open-simulation-platform/cse-core/pull/233))
0 commit comments