Skip to content

Commit

Permalink
Merge branch 'release-0.3.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolamos committed Nov 4, 2022
2 parents c60844a + 983fcca commit 613ccaa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "MartaCT"
uuid = "1b4a4c30-53cc-4a73-9c44-e0ae6415a229"
authors = ["Nicola Mosco <[email protected]>"]
version = "0.3.1"
version = "0.3.2"

[deps]
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
Expand Down
6 changes: 3 additions & 3 deletions src/Interpolation.jl
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,15 @@ end
end


@inline interpolate(mat::AbstractMatrix{T}) where {T <: Number} =
@inline interpolate(mat::AbstractMatrix) =
interpolate(mat, BilinearInterpolation())

@inline interpolate(v::AbstractVector{T}) where {T <: Number} =
@inline interpolate(v::AbstractVector) =
interpolate(v, LinearInterpolation())

for nm _interpolation_types
@eval begin
@inline function (interp::$nm)(a::AbstractArray{T}) where {T <: Number}
@inline function (interp::$nm)(a::AbstractArray)
interpolate(a, interp)
end
end
Expand Down

2 comments on commit 613ccaa

@nicolamos
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
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/71653

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.3.2 -m "<description of version>" 613ccaac87246576478e531163061e609b0ac7a3
git push origin v0.3.2

Please sign in to comment.