Skip to content

Commit

Permalink
Merge pull request #206 from worlddynamics/dev
Browse files Browse the repository at this point in the history
Update package versions in Project.toml
  • Loading branch information
natema authored Feb 20, 2024
2 parents 24b7bf3 + 8cb815d commit d7ab039
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ ModelingToolkit = "961ee093-0014-501f-94e3-6117800e7a78"
PlotlyJS = "f0f68f2c-4968-5e81-91da-67840de0976a"

[compat]
ColorSchemes = "3.0 - 3.20"
ColorSchemes = "3.0 - 3.24"
ColorTypes = "0.7 - 0.11.4"
DifferentialEquations = "7.1 - 7.7"
DifferentialEquations = "7.1 - 7.12"
IfElse = "0.1.1"
ModelingToolkit = "8.26 - 8.48.1"
PlotlyJS = "0.13 - 0.18.10"
julia = "1.6 - 1.9"
ModelingToolkit = "8.26 - 8.75"
PlotlyJS = "0.13 - 0.18.12"
julia = "1.6 - 1.10"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Expand Down
8 changes: 4 additions & 4 deletions src/WorldDynamics.jl
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ export interpolate, clip, switch

using ModelingToolkit

@register interpolate(x, y::Tuple{Vararg{Float64}}, xs::Tuple{Float64, Float64})
@register clip(f1, f2, va, th)
@register switch(v1, v2, z)
@register WorldDynamics.step(t, hght, sttm)
@register_symbolic interpolate(x, y::Tuple{Vararg{Float64}}, xs::Tuple{Float64, Float64})
@register_symbolic clip(f1, f2, va, th)
@register_symbolic switch(v1, v2, z)
@register_symbolic WorldDynamics.step(t, hght, sttm)

export World1
export World1A
Expand Down

2 comments on commit d7ab039

@aurorarossi
Copy link
Member

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 updated: JuliaRegistries/General/101173

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.4.4 -m "<description of version>" d7ab039217397b237f59e5fdcd59af14fb8d8db5
git push origin v0.4.4

Please sign in to comment.