Skip to content

Commit

Permalink
0.2.5 bugfix plot_erp! method was missing
Browse files Browse the repository at this point in the history
  • Loading branch information
behinger committed Feb 16, 2023
1 parent 26a56d8 commit aed775d
Show file tree
Hide file tree
Showing 2 changed files with 3 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 = "UnfoldMakie"
uuid = "69a5ce3b-64fb-4f22-ae69-36dd4416af2a"
authors = ["Benedikt Ehinger", "Daniel Baumgartner", "Sören Döring", "Niklas Gärtner", "Vladimir Mikheev"]
version = "0.2.4"
version = "0.2.5"

[deps]
AlgebraOfGraphics = "cbdf2221-f076-402e-a563-3d30da359d67"
Expand Down
2 changes: 2 additions & 0 deletions src/plot_erp.jl
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,15 @@ The input `f`
"""
plot_erp(plotData::DataFrame, config::PlotConfig;kwargs...) = plot_erp!(Figure(), plotData, config;kwargs...)
plot_erp(plotData::DataFrame;kwargs...) = plot_erp!(Figure(), plotData, PlotConfig(:erp);kwargs...)
plot_erp!(fig::Union{GridPosition, Figure},plotData::DataFrame;kwargs...) = plot_erp!(fig, plotData, PlotConfig(:erp);kwargs...)


"""
Plot Butterfly
see `plot_erp`
"""
plot_butterfly(plotData::DataFrame,config::PlotConfig;kwargs...) = plot_erp(plotData, config;kwargs...)
plot_butterfly(plotData::DataFrame;kwargs...) = plot_erp(plotData, PlotConfig(:butterfly);kwargs...)
plot_butterfly!(f::Union{GridPosition, Figure},plotData::DataFrame;kwargs...) = plot_erp!(f,plotData, PlotConfig(:butterfly);kwargs...)

Expand Down

2 comments on commit aed775d

@behinger
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 register

Release note:
Bugfix release

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

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.5 -m "<description of version>" aed775d60d978d10cb77e4b13b1858fd8e6378ee
git push origin v0.2.5

Please sign in to comment.