Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
eford committed Mar 10, 2021
1 parent 7403fa9 commit 21d4c86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mask_shapes/gaussian_mixture.jl
Original file line number Diff line number Diff line change
Expand Up @@ -84,5 +84,5 @@ function mask_with_increased_fwhm(m::GaussianMixtureCCFMask, Δfwhm::Real )
fwhm_orig = 2*sqrt(log(2)) .* m.σ_sqrt2
fwhm_new = sqrt.(fwhm_orig.^2 .+ Δfwhm^2)
σ_new = 0.5 .* fwhm_new./sqrt(2*log(2))
function GaussianMixtureCCFMask(m.weight, σ_new, m.truncation_Δv, v_offset=m.v_offset )
return GaussianMixtureCCFMask(m.weight, σ_new, m.truncation_Δv, v_offset=m.v_offset )
end

3 comments on commit 21d4c86

@eford
Copy link
Member Author

@eford eford commented on 21d4c86 Mar 10, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register
Release Notes:

  • Add optional Δfwhm to calc_ccf_chunklist, calc_ccf_and_var_chunklist, calc_ccf_and_covar_chunklist, calc_ccf_chunklist_timeseries

@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/31651

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.1.12 -m "<description of version>" 21d4c866fdbd1f4d83b22f73f11103fa384ac53e
git push origin v0.1.12

Also, note the warning: Version 0.1.12 skips over 0.1.11
This can be safely ignored. However, if you want to fix this you can do so. Call register() again after making the fix. This will update the Pull request.

@eford
Copy link
Member Author

@eford eford commented on 21d4c86 Mar 10, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cancel this request. Will retrigger for v0.1.11.

Please sign in to comment.