Skip to content

Commit

Permalink
fix amplitude bug
Browse files Browse the repository at this point in the history
  • Loading branch information
mileslucas committed Dec 23, 2020
1 parent ed31adc commit 208eec1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "HCIToolbox"
uuid = "b6cd55e5-4d02-4e12-b82c-005f67e784bf"
authors = ["Miles Lucas <[email protected]>"]
version = "0.5.0"
version = "0.5.1"

[deps]
Compat = "34da2185-b29b-5c13-b0c7-acf172513d20"
Expand Down
2 changes: 1 addition & 1 deletion src/inject.jl
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ end

function inject!(cube::AbstractArray{T,3}, angles::AbstractVector, kernel, pos; A = one(T), kwargs...) where T
gen = CubeGenerator(cube, angles, kernel; kwargs...)
return inject!(cube, gen, pos; kwargs...)
return inject!(cube, gen, pos; A=A)
end

function inject!(cube::AbstractArray{T,3}, gen::CubeGenerator, pos; A=one(T)) where T
Expand Down

2 comments on commit 208eec1

@mileslucas
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/26856

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.1 -m "<description of version>" 208eec1583a3d952c7631f896b0fb81bcc394e44
git push origin v0.5.1

Please sign in to comment.