Skip to content

Commit

Permalink
Fix contains function not imported (#153)
Browse files Browse the repository at this point in the history
* Fix contains function not imported

* Bump to version 0.7.2
  • Loading branch information
Joel-Dahne authored Jun 21, 2022
1 parent 89e8f0d commit ec86434
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Arblib"
uuid = "fb37089c-8514-4489-9461-98f9c8763369"
authors = ["Marek Kaluba <[email protected]>", "Sascha Timme <Sascha Timme <[email protected]>", "Joel Dahne <[email protected]>"]
version = "0.7.1"
version = "0.7.2"

[deps]
Arb_jll = "d9960996-1013-53c9-9ba4-74a4155039c3"
Expand Down
3 changes: 3 additions & 0 deletions src/Arblib.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ using Arb_jll
import LinearAlgebra
import SpecialFunctions

# So that the parsed contains method extends the base function
import Base: contains

export Mag,
MagRef,
Arf,
Expand Down

2 comments on commit ec86434

@Joel-Dahne
Copy link
Collaborator 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/62763

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

Please sign in to comment.