Skip to content

Commit

Permalink
Bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ctessum committed Nov 9, 2024
1 parent abd4d7b commit 56c1a69
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "EarthSciMLBase"
uuid = "e53f1632-a13c-4728-9402-0c66d48804b0"
authors = ["EarthSciML Authors and Contributors"]
version = "0.19.2"
version = "0.20.0"

[deps]
Accessors = "7d9f7c33-5ae7-4f3b-8dc6-eff91059b697"
Expand Down
2 changes: 1 addition & 1 deletion src/coupled_system.jl
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Things that can be added to a `CoupledSystem`:
* [`Operator`](@ref)s
* [`DomainInfo`](@ref)s
* [Callbacks](https://docs.sciml.ai/DiffEqDocs/stable/features/callback_functions/)
* Types `X` that implement a `EarthSciMLBase.init_callback(::X, sys::CoupledSystem, sys_mtk, obs_eqs, domain::DomainInfo)::DECallback` method
* Types `X` that implement a `EarthSciMLBase.init_callback(::X, sys::CoupledSystem, sys_mtk, domain::DomainInfo)::DECallback` method
* Other `CoupledSystem`s
* Types `X` that implement a `EarthSciMLBase.couple2(::X, ::CoupledSystem)` or `EarthSciMLBase.couple2(::CoupledSystem, ::X)` method.
* `Tuple`s or `AbstractVector`s of any of the things above.
Expand Down
1 change: 0 additions & 1 deletion src/solver_strategy_strang.jl
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,6 @@ function single_ode_step!(setp!, u, IIchunk, integrator, time, step_length)
setp!(integrator.p, ii)
solve!(integrator)
@assert length(integrator.sol.u) == 0
@assert integrator.t == time + step_length
uii .= integrator.u
end
end

2 comments on commit 56c1a69

@ctessum
Copy link
Member Author

@ctessum ctessum commented on 56c1a69 Nov 9, 2024

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

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.20.0 -m "<description of version>" 56c1a69f33f29bd2d487f03f49747659f9dd7eef
git push origin v0.20.0

Please sign in to comment.