diff --git a/lib/ControlSystemsBase/Project.toml b/lib/ControlSystemsBase/Project.toml index 8e15dd480..43e4ac211 100644 --- a/lib/ControlSystemsBase/Project.toml +++ b/lib/ControlSystemsBase/Project.toml @@ -2,7 +2,7 @@ name = "ControlSystemsBase" uuid = "aaaaaaaa-a6ca-5380-bf3e-84a91bcd477e" authors = ["Dept. Automatic Control, Lund University"] repo = "https://github.com/JuliaControl/ControlSystems.jl.git" -version = "1.11.2" +version = "1.11.3" [deps] DSP = "717857b8-e6f2-59f4-9121-6e50c889abd2" @@ -32,7 +32,7 @@ ControlSystemsBaseImplicitDifferentiationExt = ["ImplicitDifferentiation", "Comp [compat] Aqua = "0.5" -DSP = "0.6.1, 0.7" +DSP = "0.6.1, 0.7, 0.8" ForwardDiff = "0.10" ImplicitDifferentiation = "0.4.2" IterTools = "1.0" diff --git a/lib/ControlSystemsBase/test/test_dsp.jl b/lib/ControlSystemsBase/test/test_dsp.jl index 4bbf9e556..582cd1a72 100644 --- a/lib/ControlSystemsBase/test/test_dsp.jl +++ b/lib/ControlSystemsBase/test/test_dsp.jl @@ -9,7 +9,7 @@ Gds = DSP.SecondOrderSections(Gd) u = randn(100) - uf = DSP.filt(Gds, u, zeros(2,2)) + uf = DSP.filt(DSP.DF2TFilter(Gds, zeros(2,2)), u) uls = lsim(Gd, u').y' @test uf[1:end-1] ≈ uls[2:end]