Skip to content

Commit

Permalink
update: version 0.25.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamWysokinski committed Jan 1, 2025
1 parent 59b4538 commit 5ac3098
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "NeuroAnalyzer"
uuid = "b40dcafa-b65c-47ad-a230-3174ba5cadd1"
authors = ["Adam Wysokiński <[email protected]>"]
version = "0.25.1-dev"
version = "0.25.1"

[deps]
Artifacts = "56f22d72-fd6d-98f1-02f0-08ddc0907c33"
Expand Down
2 changes: 1 addition & 1 deletion src/NeuroAnalyzer.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module NeuroAnalyzer

# set constants

const VER = v"0.25.1-dev"
const VER = v"0.25.1"
const allow_wip = occursin("dev", string(VER)) # false for the stable branch, true for the devel branch
const io = PipeBuffer() # required for interactive preview
const data_types = ["eeg",
Expand Down
2 changes: 1 addition & 1 deletion test/internal.jl
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ t, et = NeuroAnalyzer._get_t(e10)
@test NeuroAnalyzer._v2r(1) == 1
@test NeuroAnalyzer._find_bylabel(eeg.locs, "fp1") == 1
@test NeuroAnalyzer._xlims(1:10) == (1.0, 10.0)
@test NeuroAnalyzer._ticks(1:10) == [1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 6.0, 7.0, 8.0, 9.0, 10.0]
@test NeuroAnalyzer._ticks(1:10) == [1.0, 1.9, 2.8, 3.7, 4.6, 5.5, 6.4, 7.3, 8.2, 9.1, 10.0]
@test NeuroAnalyzer._ticks((1, 10)) == [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
@test NeuroAnalyzer._erpticks(1:10) == [1.0, 0.5, 0.0, 1.25, 2.5, 3.75, 5.0, 6.25, 7.5, 8.75, 10.0]
@test NeuroAnalyzer._erpticks((1, 10)) == [1.0, 0.5, 0.0, 1.25, 2.5, 3.75, 5.0, 6.25, 7.5, 8.75, 10.0]
Expand Down

0 comments on commit 5ac3098

Please sign in to comment.