Skip to content

Commit

Permalink
Bump DiffEqCallBack compat (#223)
Browse files Browse the repository at this point in the history
* bump DiffEqCallBack compat

* patch bump

* Update Test.yml

fail-fast=false, so Julia v1 tests are triggered too

* Update Project.toml

added FMIZoo compat to use old version

* Update Project.toml

duplicated [compat] - my bad

* Update Project.toml

pulled Julia compat to 1.9+

---------

Co-authored-by: ThummeTo <[email protected]>
  • Loading branch information
sharanry and ThummeTo committed Jun 20, 2024
1 parent 43643c7 commit 6b76976
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "FMI"
uuid = "14a09403-18e3-468f-ad8a-74f8dda2d9ac"
authors = ["TT <[email protected]>", "LM <[email protected]>", "JK <[email protected]>"]
version = "0.10.3"
version = "0.10.4"

[deps]
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"
Expand All @@ -17,12 +17,12 @@ SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462"

[compat]
ChainRulesCore = "1.15.0"
DiffEqCallbacks = "2.24.0"
DiffEqCallbacks = "2.24.0, 3"
DifferentialEquations = "7.5.0"
FMIExport = "0.1.0"
FMIImport = "0.12.1"
ForwardDiff = "0.10.0"
ProgressMeter = "1.7.0"
Requires = "1.3.0"
SciMLBase = "2"
julia = "1.6"
julia = "1.9"
7 changes: 4 additions & 3 deletions test/Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
[compat]
julia = "1.6"

[deps]
DifferentialEquations = "0c46a032-eb83-5123-abaf-570d42b7fbaa"
FMIZoo = "724179cf-c260-40a9-bd27-cccc6fe2f195"
Expand All @@ -11,5 +8,9 @@ Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f"

[compat]
FMIZoo = "0.3.0"
julia = "1.6"

[extras]
CPUSummary = "2a0fbf3d-bb9c-48f3-b0a9-814d99fd7ab9"

2 comments on commit 6b76976

@ThummeTo
Copy link
Owner

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/109435

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.10.4 -m "<description of version>" 6b769761535e7e7bca03dce568eb2732c66f0e5c
git push origin v0.10.4

Please sign in to comment.