Skip to content

Commit

Permalink
Merge pull request #85 from cadojo/dev
Browse files Browse the repository at this point in the history
Fixing documentation build error: was linking to previous package name
  • Loading branch information
cadojo authored Oct 11, 2020
2 parents 03209f1 + 2d6e74d commit d031feb
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
28 changes: 14 additions & 14 deletions docs/Manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ version = "0.0.4"

[[ArrayInterface]]
deps = ["LinearAlgebra", "Requires", "SparseArrays"]
git-tree-sha1 = "a7110d4291700c0d9ddbeb5fa41c3b9c4659c2aa"
git-tree-sha1 = "40990a6dfd617d2f7d1375e9d4b52d962c8d6dcf"
uuid = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"
version = "2.13.3"
version = "2.13.4"

[[ArrayLayouts]]
deps = ["Compat", "FillArrays", "LinearAlgebra", "SparseArrays"]
Expand All @@ -36,14 +36,6 @@ git-tree-sha1 = "c30985d8821e0cd73870b17b0ed0ce6dc44cb744"
uuid = "56f22d72-fd6d-98f1-02f0-08ddc0907c33"
version = "1.3.0"

[[UnitfulAstrodynamics]]
deps = ["ComponentArrays", "DifferentialEquations", "LinearAlgebra", "Logging", "PhysicalConstants", "Plots", "Reexport", "Roots", "StaticArrays", "Unitful", "UnitfulAngles", "UnitfulAstro"]
git-tree-sha1 = "6d127ceb1f27126434e227b1c49522933244785d"
repo-rev = "main"
repo-url = "https://github.com/cadojo/UnitfulAstrodynamics.jl"
uuid = "673e7d9c-15b0-48d3-bce0-fab551f3a174"
version = "0.1.0"

[[BandedMatrices]]
deps = ["ArrayLayouts", "FillArrays", "LinearAlgebra", "Random", "SparseArrays"]
git-tree-sha1 = "9b90c8e22ff5a467ef14699bc38afac53885ac3e"
Expand Down Expand Up @@ -119,9 +111,9 @@ version = "0.3.0"

[[Compat]]
deps = ["Base64", "Dates", "DelimitedFiles", "Distributed", "InteractiveUtils", "LibGit2", "Libdl", "LinearAlgebra", "Markdown", "Mmap", "Pkg", "Printf", "REPL", "Random", "SHA", "Serialization", "SharedArrays", "Sockets", "SparseArrays", "Statistics", "Test", "UUIDs", "Unicode"]
git-tree-sha1 = "cf03b37436c6bc162e7c8943001568b4cad4bee3"
git-tree-sha1 = "f76e41cf110de7176a657c72409e722cfc86fbb6"
uuid = "34da2185-b29b-5c13-b0c7-acf172513d20"
version = "3.19.0"
version = "3.20.0"

[[CompilerSupportLibraries_jll]]
deps = ["Libdl", "Pkg"]
Expand Down Expand Up @@ -595,9 +587,9 @@ uuid = "71a1bf82-56d0-4bbc-8a3c-48b961074391"
version = "0.1.5"

[[OffsetArrays]]
git-tree-sha1 = "3fdfca8a532507d65f39ff0ad34fe81097a55337"
git-tree-sha1 = "a416e2f267e2c8729f25bcaf1ce19d2893faf393"
uuid = "6fe1bfb0-de20-5000-8ca7-80f57d26f881"
version = "1.3.0"
version = "1.3.1"

[[Ogg_jll]]
deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"]
Expand Down Expand Up @@ -977,6 +969,14 @@ git-tree-sha1 = "b154be4ca9610e9c9dbb9dba98b2bd750539630b"
uuid = "6112ee07-acf9-5e0f-b108-d242c714bf9f"
version = "1.0.1"

[[UnitfulAstrodynamics]]
deps = ["ComponentArrays", "DifferentialEquations", "LinearAlgebra", "Logging", "PhysicalConstants", "Plots", "Reexport", "Roots", "StaticArrays", "Unitful", "UnitfulAngles", "UnitfulAstro"]
git-tree-sha1 = "cf7f0c07b73db3efdb71d163f69b00d34a8dee33"
repo-rev = "main"
repo-url = "https://github.com/cadojo/UnitfulAstrodynamics.jl"
uuid = "673e7d9c-15b0-48d3-bce0-fab551f3a174"
version = "0.5.0"

[[VectorizationBase]]
deps = ["CpuId", "Libdl", "LinearAlgebra"]
git-tree-sha1 = "03e2fbb479a1ea350398195b6fbf439bae0f8260"
Expand Down
2 changes: 1 addition & 1 deletion docs/Project.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[deps]
UnitfulAstrodynamics = "673e7d9c-15b0-48d3-bce0-fab551f3a174"
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
UnitfulAstrodynamics = "673e7d9c-15b0-48d3-bce0-fab551f3a174"
6 changes: 3 additions & 3 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ push!(LOAD_PATH,"../src/")
using Documenter
using UnitfulAstrodynamics

makedocs(modules=[Astrodynamics],
makedocs(modules=[UnitfulAstrodynamics],
format=Documenter.HTML(),
sitename="Astrodynamics.jl",
sitename="UnitfulAstrodynamics.jl",
pages=[
"Home" => "index.md",
"Overview" => Any[
Expand Down Expand Up @@ -34,7 +34,7 @@ makedocs(modules=[Astrodynamics],

deploydocs(
target = "build",
repo="github.com/cadojo/Astrodynamics.jl.git",
repo="github.com/cadojo/UnitfulAstrodynamics.jl.git",
branch = "gh-pages",
deps = nothing,
make = nothing,
Expand Down

2 comments on commit d031feb

@cadojo
Copy link
Collaborator Author

@cadojo cadojo commented on d031feb Oct 11, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register branch=main

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

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

Also, note the warning: This looks like a new registration that registers version 0.5.0.
Ideally, you should register an initial release with 0.0.1, 0.1.0 or 1.0.0 version numbers
This can be safely ignored. However, if you want to fix this you can do so. Call register() again after making the fix. This will update the Pull request.

Please sign in to comment.