Skip to content

Commit

Permalink
bug fix to pass tests
Browse files Browse the repository at this point in the history
  • Loading branch information
eford committed Apr 23, 2021
1 parent 6c17923 commit 055c4ce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "EchelleCCFs"
uuid = "5d9f57b1-d7b5-417c-8d79-eedbcaad0187"
authors = ["Eric Ford"]
version = "0.2.1"
version = "0.2.2"

[deps]
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
Expand Down Expand Up @@ -41,7 +41,7 @@ QuadGK = "2.4"
Query = "1"
RvSpectMLBase = "0.2"
SpecialFunctions = "1.0, 1.1"
StaticArrays = "1.0"
StaticArrays = "1"
StatsBase = "0.33"
ThreadedIterables = "0.2"
julia = "1.3"
julia = "1.3, 1.4, 1.5, 1.6"
2 changes: 1 addition & 1 deletion src/convenience/order_ccf_chunklist.jl
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function calc_order_ccfs_chunklist(chunk_list::AbstractChunkList,
end

chunk_ccfs_out = zeros( num_vels, num_chunks )
calc_order_ccfs_chunklist!(chunk_ccfs_out, chunk_list, this_plan_for_chunk, Δfwhm=Δfwhm, assume_sorted=assume_sorted )
calc_order_ccfs_chunklist!(chunk_ccfs_out, chunk_list, this_plan_for_chunk, assume_sorted=assume_sorted )
return chunk_ccfs_out
end

Expand Down

2 comments on commit 055c4ce

@eford
Copy link
Member Author

@eford eford commented on 055c4ce Apr 23, 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:

  • Can compute CCFs (order or total) with a CCF mask whose width varries from observation to observation

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

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.2.2 -m "<description of version>" 055c4cee2be071989a49afcee482231cf0e077cd
git push origin v0.2.2

Please sign in to comment.