Skip to content

Commit

Permalink
change name
Browse files Browse the repository at this point in the history
  • Loading branch information
rayegun committed Jun 18, 2023
1 parent cee90f5 commit adbac96
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 21 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,6 @@ jobs:
- run: |
julia --project=docs -e '
using Documenter: DocMeta, doctest
using SuperLU_Base
DocMeta.setdocmeta!(SuperLU_Base, :DocTestSetup, :(using SuperLU_Base); recursive=true)
doctest(SuperLU_Base)'
using SuperLUBase
DocMeta.setdocmeta!(SuperLUBase, :DocTestSetup, :(using SuperLUBase); recursive=true)
doctest(SuperLUBase)'
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name = "SuperLU_Base"
name = "SuperLUBase"
uuid = "79fc8b2a-9fec-41f5-a0c4-660a4203283a"
authors = ["Raye Kimmerer <[email protected]>"]
version = "0.1.0"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SuperLU_Base
# SuperLUBase

[![Build Status](https://github.com/Wimmerer/SuperLU_Base.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/Wimmerer/SuperLU_Base.jl/actions/workflows/CI.yml?query=branch%3Amain)
[![Build Status](https://github.com/Wimmerer/SuperLUBase.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/Wimmerer/SuperLUBase.jl/actions/workflows/CI.yml?query=branch%3Amain)

Common struct, function, and constant definitions for SuperLU libraries.
2 changes: 1 addition & 1 deletion docs/Project.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[deps]
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
SuperLU_Base = "79fc8b2a-9fec-41f5-a0c4-660a4203283a"
SuperLUBase = "79fc8b2a-9fec-41f5-a0c4-660a4203283a"
14 changes: 7 additions & 7 deletions docs/make.jl
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
using SuperLU_Base
using SuperLUBase
using Documenter

DocMeta.setdocmeta!(SuperLU_Base, :DocTestSetup, :(using SuperLU_Base); recursive=true)
DocMeta.setdocmeta!(SuperLUBase, :DocTestSetup, :(using SuperLUBase); recursive=true)

makedocs(;
modules=[SuperLU_Base],
modules=[SuperLUBase],
authors="Raye Kimmerer <[email protected]>",
repo="https://github.com/Wimmerer/SuperLU_Base.jl/blob/{commit}{path}#{line}",
sitename="SuperLU_Base.jl",
repo="https://github.com/Wimmerer/SuperLUBase.jl/blob/{commit}{path}#{line}",
sitename="SuperLUBase.jl",
format=Documenter.HTML(;
prettyurls=get(ENV, "CI", "false") == "true",
canonical="https://Wimmerer.github.io/SuperLU_Base.jl",
canonical="https://Wimmerer.github.io/SuperLUBase.jl",
edit_link="main",
assets=String[],
),
Expand All @@ -20,6 +20,6 @@ makedocs(;
)

deploydocs(;
repo="github.com/Wimmerer/SuperLU_Base.jl",
repo="github.com/Wimmerer/SuperLUBase.jl",
devbranch="main",
)
8 changes: 4 additions & 4 deletions docs/src/index.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
```@meta
CurrentModule = SuperLU_Base
CurrentModule = SuperLUBase
```

# SuperLU_Base
# SuperLUBase

Documentation for [SuperLU_Base](https://github.com/Wimmerer/SuperLU_Base.jl).
Documentation for [SuperLUBase](https://github.com/Wimmerer/SuperLUBase.jl).

```@index
```

```@autodocs
Modules = [SuperLU_Base]
Modules = [SuperLUBase]
```
2 changes: 1 addition & 1 deletion src/SuperLU_Base.jl → src/SuperLUBase.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module SuperLU_Base
module SuperLUBase

using SparseBase
using SparseBase: nstored
Expand Down
4 changes: 2 additions & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using SuperLU_Base
using SuperLUBase
using Test

@testset "SuperLU_Base.jl" begin
@testset "SuperLUBase.jl" begin
# Write your tests here.
end

2 comments on commit adbac96

@rayegun
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 register()

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

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>" adbac9675dab309238095bcfd878cba215fe1a69
git push origin v0.1.0

Please sign in to comment.