From 5ac30989aa6fa438810cf8b962574e167415a5fb Mon Sep 17 00:00:00 2001 From: Adam Wysokinski Date: Wed, 1 Jan 2025 10:50:26 +0100 Subject: [PATCH] update: version 0.25.1 --- Project.toml | 2 +- src/NeuroAnalyzer.jl | 2 +- test/internal.jl | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Project.toml b/Project.toml index 904d2208..00a3bd0a 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "NeuroAnalyzer" uuid = "b40dcafa-b65c-47ad-a230-3174ba5cadd1" authors = ["Adam WysokiƄski "] -version = "0.25.1-dev" +version = "0.25.1" [deps] Artifacts = "56f22d72-fd6d-98f1-02f0-08ddc0907c33" diff --git a/src/NeuroAnalyzer.jl b/src/NeuroAnalyzer.jl index c29ccc36..e707ca6f 100644 --- a/src/NeuroAnalyzer.jl +++ b/src/NeuroAnalyzer.jl @@ -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", diff --git a/test/internal.jl b/test/internal.jl index fad44e29..5825068d 100644 --- a/test/internal.jl +++ b/test/internal.jl @@ -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]