Skip to content

Commit

Permalink
clean up (#142)
Browse files Browse the repository at this point in the history
* be more explicit about some imports

* set version to v0.5.20
  • Loading branch information
ranocha committed Jul 14, 2022
1 parent 0efb8f2 commit af4ce8d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "SummationByPartsOperators"
uuid = "9f78cca6-572e-554e-b819-917d2f1cf240"
author = ["Hendrik Ranocha"]
version = "0.5.19"
version = "0.5.20"

[deps]
ArgCheck = "dce04be8-c92d-5529-be00-80e4d2c0e197"
Expand Down
6 changes: 4 additions & 2 deletions src/SummationByPartsOperators.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@

"""
SummationByPartsOperators
[SummationByPartsOperators.jl](https://github.com/ranocha/SummationByPartsOperators.jl)
is a Julia library of summation-by-parts (SBP) operators, which are discrete
derivative operators developed to get provably stable semidiscretizations,
Expand Down Expand Up @@ -46,12 +48,12 @@ using SparseArrays

using ArgCheck: @argcheck
using ArrayInterface: StaticInt, static_length
using FFTW
using FFTW: FFTW, plan_rfft, plan_brfft, plan_irfft
using LoopVectorization: LoopVectorization, @turbo, @tturbo
using RecursiveArrayTools: recursive_bottom_eltype
using Reexport: @reexport
using Requires: @require
using StaticArrays
using StaticArrays: SVector, StaticVector, FieldVector
using UnPack: @unpack
using Unrolled: @unroll

Expand Down

2 comments on commit af4ce8d

@ranocha
Copy link
Owner 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/64233

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.20 -m "<description of version>" af4ce8df6e6f1fb385b574b6b3cd7ee3ffae6e4a
git push origin v0.5.20

Please sign in to comment.