Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,28 +5,28 @@ This package provides easy access to PETSc solvers in sequential and parallel Ju

| **Documentation** |
|:------------ |
| [![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://fverdugo.github.io/PetscCall.jl/stable/) |
| [![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://fverdugo.github.io/PetscCall.jl/dev/) |
| [![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://PartitionedArrays.github.io/PetscCall.jl/stable/) |
| [![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://PartitionedArrays.github.io/PetscCall.jl/dev/) |
|**Build Status** |
[![Build Status](https://github.com/fverdugo/PetscCall.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/fverdugo/PetscCall.jl/actions/workflows/CI.yml?query=branch%3Amain) |
[![Build Status](https://github.com/PartitionedArrays/PetscCall.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/PartitionedArrays/PetscCall.jl/actions/workflows/CI.yml?query=branch%3Amain) |
|**Coverage** |
| [![Coverage](https://codecov.io/gh/fverdugo/PetscCall.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/fverdugo/PetscCall.jl) |
| [![Coverage](https://codecov.io/gh/PartitionedArrays/PetscCall.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/PartitionedArrays/PetscCall.jl) |

## Documentation

- [**STABLE**](https://fverdugo.github.io/PetscCall.jl/stable) — **Documentation for the most recently tagged version.**
- [**LATEST**](https://fverdugo.github.io/PetscCall.jl/dev) — *Documentation for the in-development version.*
- [**STABLE**](https://PartitionedArrays.github.io/PetscCall.jl/stable) — **Documentation for the most recently tagged version.**
- [**LATEST**](https://PartitionedArrays.github.io/PetscCall.jl/dev) — *Documentation for the in-development version.*

## Help and discussion

- You can open a new discussion to ask questions [here](https://github.com/fverdugo/PetscCall.jl/discussions).
- If you have found a bug, open an issue [here](https://github.com/fverdugo/PetscCall.jl/issues). Do not forget to include a (minimal) reproducer.
- You can open a new discussion to ask questions [here](https://github.com/PartitionedArrays/PetscCall.jl/discussions).
- If you have found a bug, open an issue [here](https://github.com/PartitionedArrays/PetscCall.jl/issues). Do not forget to include a (minimal) reproducer.

## Contributing

This package is under active development and there are several ways to contribute:

- by enhancing the documentation (e.g., fixing typos, enhancing doc strings, adding examples).
- by addressing one of the [issues waiting for help](https://github.com/fverdugo/PetscCall.jl/labels/help%20wanted).
- by addressing one of the [issues waiting for help](https://github.com/PartitionedArrays/PetscCall.jl/labels/help%20wanted).
- by adding more tests to increase the code coverage.
- by extending the current functionality. In this case, open a discussion [here](https://github.com/fverdugo/PetscCall.jl/discussions) to coordinate with the package maintainers before proposing significant changes.
- by extending the current functionality. In this case, open a discussion [here](https://github.com/PartitionedArrays/PetscCall.jl/discussions) to coordinate with the package maintainers before proposing significant changes.
4 changes: 2 additions & 2 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ makedocs(;
sitename="PetscCall.jl",
format=Documenter.HTML(;
prettyurls=get(ENV, "CI", "false") == "true",
canonical="https://fverdugo.github.io/PetscCall.jl",
canonical="https://PartitionedArrays.github.io/PetscCall.jl",
edit_link="main",
assets=String[],
),
Expand All @@ -22,6 +22,6 @@ makedocs(;
)

deploydocs(;
repo="github.com/fverdugo/PetscCall.jl",
repo="github.com/PartitionedArrays/PetscCall.jl",
devbranch="main",
)
Loading