Skip to content

Commit

Permalink
V0.13.0 (#193)
Browse files Browse the repository at this point in the history
* performance improvements

* refactor: use tuple for `p` instead of array (#188)

Co-authored-by: ThummeTo <[email protected]>

* further adjustments for FMISensitiviity.jl

* modifications for FMIsensitivity.jl

* rm restriction for cross chekcs

* reincluded load/save test because of JLD2 fix

* removed benchmark

---------

Co-authored-by: Sathvik Bhagavan <[email protected]>
  • Loading branch information
ThummeTo and sathvikbhagavan authored Nov 7, 2023
1 parent f93ebd4 commit b46ed88
Show file tree
Hide file tree
Showing 21 changed files with 437 additions and 809 deletions.
14 changes: 7 additions & 7 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
name = "FMI"
uuid = "14a09403-18e3-468f-ad8a-74f8dda2d9ac"
authors = ["TT <[email protected]>", "LM <[email protected]>", "JK <[email protected]>"]
version = "0.12.4"
version = "0.13.0"

[deps]
DiffEqCallbacks = "459566f4-90b8-5000-8ac3-15dfb0a30def"
DifferentialEquations = "0c46a032-eb83-5123-abaf-570d42b7fbaa"
Downloads = "f43a241f-c20a-4ad4-852c-f6b1247861c6"
FMIExport = "31b88311-cab6-44ed-ba9c-fe5a9abbd67a"
Expand All @@ -15,11 +14,12 @@ Requires = "ae029012-a4dd-5104-9daa-d747884805df"
ThreadPools = "b189fb0b-2eb5-4ed4-bc0c-d34c51242431"

[compat]
DiffEqCallbacks = "2.26.0"
DifferentialEquations = "7.7.0"
FMIExport = "0.2.0"
FMIImport = "0.15.7"
ProgressMeter = "1.7.0"
DifferentialEquations = "7.10.0 - 7.11.0"
Downloads = "1"
FMIExport = "0.3.0"
FMIImport = "0.16.0"
LinearAlgebra = "1"
ProgressMeter = "1.7.0 - 1.9.0"
Requires = "1.3.0"
ThreadPools = "2.1.1"
julia = "1.6"
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ To keep dependencies nice and clean, the original package [*FMI.jl*](https://git
- [*FMIImport.jl*](https://github.com/ThummeTo/FMIImport.jl): Importing FMUs into Julia
- [*FMIExport.jl*](https://github.com/ThummeTo/FMIExport.jl): Exporting stand-alone FMUs from Julia Code
- [*FMICore.jl*](https://github.com/ThummeTo/FMICore.jl): C-code wrapper for the FMI-standard
- [*FMISensitivity.jl*](https://github.com/ThummeTo/FMISensitivity.jl): Static and dynamic sensitivities over FMUs
- [*FMIBuild.jl*](https://github.com/ThummeTo/FMIBuild.jl): Compiler/Compilation dependencies for FMIExport.jl
- [*FMIFlux.jl*](https://github.com/ThummeTo/FMIFlux.jl): Machine Learning with FMUs (differentiation over FMUs)
- [*FMIZoo.jl*](https://github.com/ThummeTo/FMIZoo.jl): A collection of testing and example FMUs
Expand Down
1 change: 0 additions & 1 deletion cross_checks/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,4 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"

[compat]
FMIImport = "0.15"
julia = "1.6"
2 changes: 2 additions & 0 deletions examples/src/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
FMI_*_Benchmark/
tmp/
2 changes: 2 additions & 0 deletions src/FMI.jl
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ using Requires

using FMIImport

import FMIImport.FMICore: unsense, getCurrentComponent

# TODO recheck export import list
# fmi2 imports
import FMIImport: fmi2CallbackLogger, fmi2CallbackAllocateMemory, fmi2CallbackFreeMemory, fmi2CallbackStepFinished
Expand Down
208 changes: 0 additions & 208 deletions src/FMI2/extensions/Plots.jl

This file was deleted.

Loading

2 comments on commit b46ed88

@ThummeTo
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/94909

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.13.0 -m "<description of version>" b46ed88a18e241d9c021a169bb68414c501e5546
git push origin v0.13.0

Please sign in to comment.