Skip to content

Commit

Permalink
Bump Manifolds.jl to 0.10 (#32)
Browse files Browse the repository at this point in the history
* Bump Manifolds.jl to 0.10

* bump Julia versions on CI

* import RAT.jl
  • Loading branch information
mateuszbaran authored Aug 28, 2024
1 parent 88bc20d commit af86f91
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
julia-version: ["1.6", "1.9", "~1.10.0-0"]
julia-version: ["1.6", "1.10", "~1.11.0-0"]
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ManifoldDiffEq"
uuid = "1143c485-9b25-4e23-a65f-701df382ec90"
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.1.8"
version = "0.1.9"

[deps]
DiffEqBase = "2b5f629d-d688-5b77-993f-72d75c75574e"
Expand All @@ -17,7 +17,7 @@ SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462"
DiffEqBase = "6"
DoubleFloats = ">= 0.9.2"
LinearAlgebra = "1.6"
Manifolds = "0.9"
Manifolds = "0.10"
ManifoldsBase = "0.15"
Markdown = "1.6"
OrdinaryDiffEq = "6"
Expand Down
2 changes: 1 addition & 1 deletion docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
[compat]
Documenter = "1.0"
DocumenterCitations = "1.2.1"
Manifolds = "0.9"
Manifolds = "0.10"
ManifoldsBase = "0.15"
Plots = "1"
1 change: 1 addition & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ using Manifolds
using OrdinaryDiffEq: OrdinaryDiffEq, alg_order
using LinearAlgebra
using DiffEqBase
using RecursiveArrayTools

function test_solver_frozen(manifold_to_alg; expected_order = nothing, adaptive = false)
expected_order !== nothing && @testset "alg_order" begin
Expand Down

2 comments on commit af86f91

@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/114001

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

Please sign in to comment.