Skip to content

Commit

Permalink
Preparing for release (#693)
Browse files Browse the repository at this point in the history
Co-authored-by: levi <[email protected]>
  • Loading branch information
ljamt and levi authored Apr 5, 2022
1 parent ecd1429 commit fa8c681
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@ All notable changes to libcosim will be documented in this file. This includes n

This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html)

### [v0.9.0] – 2022-04-05
##### Changed
* Removed fibers to simplify code and increase simulation performance. Concurrency must now be implemented in the master
algorithm, and `fixed_step_algorithm` has been modified to use a thread pool. ([PR#674](https://github.com/open-simulation-platform/libcosim/pull/674), [PR#692](https://github.com/open-simulation-platform/libcosim/pull/692))
* Performance improvements ([PR#687](https://github.com/open-simulation-platform/libcosim/pull/687))

##### Added
* OspModelDescription.xml can be located in same folder as FMU when using proxyfmu ([PR#688](https://github.com/open-simulation-platform/libcosim/pull/688))
* Option to build with FMI logging removed ([PR#679](https://github.com/open-simulation-platform/libcosim/pull/679))

##### Fixed
* Update to proxyfmu 0.2.7

### [v0.8.3] – 2021-11-26
##### Fixed
* Update to proxyfmu 0.2.6 ([PR#676](https://github.com/open-simulation-platform/libcosim/pull/672))
Expand Down Expand Up @@ -179,3 +192,4 @@ First OSP JIP partner release
[v0.8.1]: https://github.com/open-simulation-platform/cse-core/compare/v0.8.0...v0.8.1
[v0.8.2]: https://github.com/open-simulation-platform/cse-core/compare/v0.8.1...v0.8.2
[v0.8.3]: https://github.com/open-simulation-platform/cse-core/compare/v0.8.2...v0.8.3
[v0.9.0]: https://github.com/open-simulation-platform/cse-core/compare/v0.8.3...v0.9.0
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def configure(self):

def requirements(self):
if self.options.proxyfmu:
self.requires("proxyfmu/0.2.6@osp/stable")
self.requires("proxyfmu/0.2.7@osp/stable")

def imports(self):
binDir = os.path.join("output", str(self.settings.build_type).lower(), "bin")
Expand Down

0 comments on commit fa8c681

Please sign in to comment.