Skip to content

Commit

Permalink
Bump BoundaryValueDiffEq to v4 (#647)
Browse files Browse the repository at this point in the history
* Bump BoundaryValueDiffEq to v4

* bump version
  • Loading branch information
mateuszbaran authored Sep 7, 2023
1 parent 4c77aeb commit 22dc01d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Manifolds"
uuid = "1cead3c2-87b3-11e9-0ccd-23c62b72b94e"
authors = ["Seth Axen <seth.axen@gmail.com>", "Mateusz Baran <mateuszbaran89@gmail.com>", "Ronny Bergmann <manopt@ronnybergmann.net>", "Antoine Levitt <antoine.levitt@gmail.com>"]
version = "0.8.75"
version = "0.8.76"

[deps]
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
Expand Down Expand Up @@ -42,7 +42,7 @@ ManifoldsRecipesBaseExt = ["Colors", "RecipesBase"]
ManifoldsTestExt = "Test"

[compat]
BoundaryValueDiffEq = "3"
BoundaryValueDiffEq = "4"
Colors = "0.12"
Distributions = "0.22.6, 0.23, 0.24, 0.25"
Einsum = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[compat]
BoundaryValueDiffEq = "3"
BoundaryValueDiffEq = "4"
CondaPkg = "0.2"
DiffEqCallbacks = "2"
Distributions = "0.22.6, 0.23, 0.24, 0.25"
Expand Down
8 changes: 4 additions & 4 deletions ext/ManifoldsBoundaryValueDiffEqExt.jl
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ end
a2,
A::AbstractAtlas,
i;
solver=GeneralMIRK4(),
solver=MIRK4(),
dt=0.05,
kwargs...,
)
Expand All @@ -54,7 +54,7 @@ function solve_chart_log_bvp(
a2,
A::AbstractAtlas,
i;
solver=GeneralMIRK4(),
solver=MIRK4(),
dt=0.05,
kwargs...,
)
Expand Down Expand Up @@ -82,7 +82,7 @@ end
a2,
A::AbstractAtlas,
i;
solver=GeneralMIRK4(),
solver=MIRK4(),
dt=0.05,
kwargs...,
)
Expand All @@ -97,7 +97,7 @@ function estimate_distance_from_bvp(
a2,
A::AbstractAtlas,
i;
solver=GeneralMIRK4(),
solver=MIRK4(),
dt=0.05,
kwargs...,
)
Expand Down

2 comments on commit 22dc01d

@mateuszbaran
Copy link
Member 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/91004

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.8.76 -m "<description of version>" 22dc01d9203fc71413c7176e7cb9ddb4824afa28
git push origin v0.8.76

Please sign in to comment.