diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 61489c4..246b97d 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -10,7 +10,7 @@ jobs: fail-fast: false matrix: version: - - '1.9' + - 'lts' - '1' - 'nightly' os: @@ -20,12 +20,12 @@ jobs: arch: - x64 steps: - - uses: actions/checkout@v2 - - uses: julia-actions/setup-julia@v1 + - uses: actions/checkout@v4 + - uses: julia-actions/setup-julia@v2 with: version: ${{ matrix.version }} arch: ${{ matrix.arch }} - - uses: actions/cache@v1 + - uses: actions/cache@v4 env: cache-name: cache-artifacts with: @@ -38,6 +38,7 @@ jobs: - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-runtest@v1 - uses: julia-actions/julia-processcoverage@v1 - - uses: codecov/codecov-action@v1 + - uses: codecov/codecov-action@v4 with: + token: ${{ secrets.CODECOV_TOKEN }} file: lcov.info diff --git a/Project.toml b/Project.toml index 7e40480..b6b9722 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "ComplexPhasePortrait" uuid = "38ac1a67-8e16-5889-9a62-b2c9995eb50f" -version = "0.2.2" +version = "0.2.3" [deps] Colors = "5ae59095-9a9b-59fe-a467-6f913c188581" @@ -16,11 +16,11 @@ Makie = "ee78f7c6-11fb-53f2-987a-cfe4a2b5a57a" ComplexPhasePortraitMakieExt = "Makie" [compat] -CairoMakie = "0.11" -Colors = "0.12" -Images = "0.22,0.23,0.26" +CairoMakie = "0.11, 0.12" +Colors = "0.12, 0.13" +Images = "0.22, 0.23, 0.24, 0.25, 0.26" IntervalSets = "0.3.1, 0.4, 0.5, 0.7" -Makie = "0.20" +Makie = "0.20, 0.21" Plots = "1.40" Reactive = "0.8.2" RecipesBase = "1" diff --git a/ext/ComplexPhasePortraitMakieExt.jl b/ext/ComplexPhasePortraitMakieExt.jl index a18786e..598a68e 100644 --- a/ext/ComplexPhasePortraitMakieExt.jl +++ b/ext/ComplexPhasePortraitMakieExt.jl @@ -22,7 +22,7 @@ function plot!(plot::Phase{Tuple{X,Y,F}}) where {X<:AbstractVector,Y<:AbstractVe a_x,b_x = first(x[]),last(x[]) a_y,b_y = first(y[]),last(y[]) - image!(plot, a_x .. b_x, a_y .. b_y, c, limits = Rectf(a_x,a_y,b_x-a_x,b_y-a_y)) + image!(plot, a_x .. b_x, a_y .. b_y, c) end function plot!(plot::Phase{Tuple{X,Y,F}}) where {X<:Any,Y<:Any,F<:Function}