diff --git a/Project.toml b/Project.toml index cfe408eb..a0df37ed 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "Integrals" uuid = "de52edbc-65ea-441a-8357-d3a637375a31" -version = "5.4.0" +version = "5.4.1" authors = ["Chris Rackauckas "] [deps] @@ -71,7 +71,7 @@ Random = "1.10" Reexport = "1.2" SafeTestsets = "0.1" SciMLBase = "2.104, 3.0" -SciMLLogging = "1.7.0" +SciMLLogging = "1.10.1, 2" StaticArrays = "1" Test = "1.10" Zygote = "0.6.69, 0.7" diff --git a/src/Integrals.jl b/src/Integrals.jl index 49a430b1..9273c43b 100644 --- a/src/Integrals.jl +++ b/src/Integrals.jl @@ -11,9 +11,9 @@ using SciMLBase: init, solve! using LinearAlgebra: LinearAlgebra, /, norm using Random: Random using ArrayInterface: ArrayInterface -using SciMLLogging: SciMLLogging, @SciMLMessage, Silent, DebugLevel, +using SciMLLogging: SciMLLogging, @SciMLMessage, MessageLevel, Silent, DebugLevel, InfoLevel, WarnLevel, ErrorLevel, @verbosity_specifier, AbstractVerbositySpecifier, - None, Minimal, Standard, Detailed, All, AbstractMessageLevel + None, Minimal, Standard, Detailed, All include("verbosity.jl") include("algorithms_meta.jl") diff --git a/test/explicit_imports_tests.jl b/test/explicit_imports_tests.jl index c130f0cf..24c6d649 100644 --- a/test/explicit_imports_tests.jl +++ b/test/explicit_imports_tests.jl @@ -9,8 +9,8 @@ using LinearAlgebra: norm # which ExplicitImports may not detect properly, so we ignore it @test check_no_stale_explicit_imports( Integrals; ignore = ( - :norm, :AbstractVerbositySpecifier, - :DebugLevel, :Detailed, :ErrorLevel, :Minimal, :None, :Standard, :All, :AbstractMessageLevel, + :norm, :AbstractVerbositySpecifier, :MessageLevel, + :DebugLevel, :Detailed, :ErrorLevel, :Minimal, :None, :Standard, :All, ) ) === nothing end