From d4f0923f0f0185d5591b850d9ffa690e9aad05a4 Mon Sep 17 00:00:00 2001 From: Luis Benet Date: Thu, 24 Oct 2024 16:00:23 -0600 Subject: [PATCH 1/2] JLD2 v0.5, and bump patch version Co-authored-by: LuEdRaMo <73906617+LuEdRaMo@users.noreply.github.com> --- Project.toml | 4 ++-- test/jld2.jl | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Project.toml b/Project.toml index dcc05fc9..fc780808 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "TaylorSeries" uuid = "6aa5eb33-94cf-58f4-a9d0-e4b2c4fc25ea" repo = "https://github.com/JuliaDiff/TaylorSeries.jl.git" -version = "0.18.1" +version = "0.18.2" [deps] LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" @@ -24,7 +24,7 @@ TaylorSeriesSAExt = "StaticArrays" [compat] Aqua = "0.8" IntervalArithmetic = "0.15 - 0.20" -JLD2 = "0.4" +JLD2 = "0.5" LinearAlgebra = "<0.0.1, 1" Markdown = "<0.0.1, 1" RecursiveArrayTools = "2, 3" diff --git a/test/jld2.jl b/test/jld2.jl index 1cbf2e9d..e4b2a883 100644 --- a/test/jld2.jl +++ b/test/jld2.jl @@ -7,7 +7,7 @@ using Test @testset "Test TaylorSeries JLD2 extension" begin dq = set_variables("q", order=4, numvars=6) - random_TaylorN = [cos(sum(dq .* rand(6))), sin(sum(dq .* rand(6))), tan(sum(dq .* rand(6)))] + random_TaylorN = [exp(sum(rand(6) .* dq)) for _ in 1:10_000] jldsave("test.jld2"; random_TaylorN = random_TaylorN) recovered_taylorN = JLD2.load("test.jld2", "random_TaylorN") @test recovered_taylorN == random_TaylorN From 4c97f43c0d0c7a4379497c527b71959b536d36c3 Mon Sep 17 00:00:00 2001 From: Luis Benet Date: Thu, 24 Oct 2024 16:16:06 -0600 Subject: [PATCH 2/2] CI tests 'lts' (instead of 1.6) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dc3f3b11..143ba237 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: strategy: fail-fast: false matrix: - julia-version: ['1.6', '1', 'nightly'] + julia-version: ['lts', '1', 'nightly'] julia-arch: [x64] os: [ubuntu-latest, macOS-latest, windows-latest] # # 32-bit Julia binaries are not available on macOS