Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…Eq.jl into main
  • Loading branch information
mateuszbaran committed Aug 11, 2021
2 parents 3f46885 + b3b8fb1 commit 3d7cee0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
3 changes: 3 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,12 @@ RecursiveArrayTools = "731186ca-8d62-57ce-b412-fbd966d074cd"
SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462"

[compat]
DiffEqBase = "6"
DoubleFloats = ">= 0.9.2"
Manifolds = "0.6"
ManifoldsBase = "0.12"
OrdinaryDiffEq = "5"
RecursiveArrayTools = "2"
SciMLBase = "1.0"
julia = "1.0"

Expand Down
6 changes: 3 additions & 3 deletions Readme.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# ManifoldDiffEq.jl

[![](https://img.shields.io/badge/docs-stable-blue.svg)](https://juliamanifolds.github.io/ManifoldDiffEq.jl/stable/)
[![](https://img.shields.io/badge/docs-dev-blue.svg)](https://juliamanifolds.github.io/ManifoldDiffEq.jl/latest/)
[![](https://img.shields.io/badge/docs-dev-blue.svg)](https://juliamanifolds.github.io/ManifoldDiffEq.jl/dev/)
[![Code Style: Blue](https://img.shields.io/badge/code%20style-blue-4495d1.svg)](https://github.com/invenia/BlueStyle)
[![CI](https://github.com/JuliaManifolds/ManifoldDiffEq.jl/workflows/CI/badge.svg)](https://github.com/JuliaManifolds/ManifoldDiffEq.jl/actions?query=workflow%3ACI+branch%3Amaster)
[![codecov.io](http://codecov.io/github/JuliaManifolds/ManifoldDiffEq.jl/coverage.svg?branch=master)](https://codecov.io/gh/JuliaManifolds/ManifoldDiffEq.jl/)
[![CI](https://github.com/JuliaManifolds/ManifoldDiffEq.jl/workflows/CI/badge.svg)](https://github.com/JuliaManifolds/ManifoldDiffEq.jl/actions?query=workflow%3ACI+branch%3Amain)
[![codecov.io](http://codecov.io/github/JuliaManifolds/ManifoldDiffEq.jl/coverage.svg?branch=main)](https://codecov.io/gh/JuliaManifolds/ManifoldDiffEq.jl/)

The package __ManifoldDiffEq.jl__ provides solvers for differential equations on Riemannian
manifolds using the interfaces of [`ManifoldsBase.jl`](https://github.com/JuliaManifolds/ManifoldsBase.jl)
Expand Down
6 changes: 5 additions & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,8 @@ makedocs(
"Examples" => "examples.md",
],
)
deploydocs(repo = "github.com/JuliaManifolds/ManifoldDiffEq.jl.git", push_preview = true)
deploydocs(
repo = "github.com/JuliaManifolds/ManifoldDiffEq.jl.git",
push_preview = true,
devbranch = "main",
)

2 comments on commit 3d7cee0

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

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.0 -m "<description of version>" 3d7cee00f4a53574c013980e2b9027bf679679cf
git push origin v0.1.0

Please sign in to comment.