From 64372851e65128004851dd12f2a26e0bb14547ca Mon Sep 17 00:00:00 2001 From: jClugstor Date: Thu, 30 Apr 2026 15:14:54 -0400 Subject: [PATCH 1/4] upgrade to SciMLLogging 2.0 --- Project.toml | 2 +- src/Integrals.jl | 2 +- test/explicit_imports_tests.jl | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Project.toml b/Project.toml index cfe408eb..062ca750 100644 --- a/Project.toml +++ b/Project.toml @@ -71,7 +71,7 @@ Random = "1.10" Reexport = "1.2" SafeTestsets = "0.1" SciMLBase = "2.104, 3.0" -SciMLLogging = "1.7.0" +SciMLLogging = "2" StaticArrays = "1" Test = "1.10" Zygote = "0.6.69, 0.7" diff --git a/src/Integrals.jl b/src/Integrals.jl index 49a430b1..6bf82bd4 100644 --- a/src/Integrals.jl +++ b/src/Integrals.jl @@ -13,7 +13,7 @@ using Random: Random using ArrayInterface: ArrayInterface using SciMLLogging: SciMLLogging, @SciMLMessage, 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..07e859e3 100644 --- a/test/explicit_imports_tests.jl +++ b/test/explicit_imports_tests.jl @@ -10,7 +10,7 @@ using LinearAlgebra: norm @test check_no_stale_explicit_imports( Integrals; ignore = ( :norm, :AbstractVerbositySpecifier, - :DebugLevel, :Detailed, :ErrorLevel, :Minimal, :None, :Standard, :All, :AbstractMessageLevel, + :DebugLevel, :Detailed, :ErrorLevel, :Minimal, :None, :Standard, :All, ) ) === nothing end From 2eb0462fae552e1d37eeec6d7198d669d097fb86 Mon Sep 17 00:00:00 2001 From: jClugstor Date: Wed, 13 May 2026 13:02:30 -0400 Subject: [PATCH 2/4] update to SciMLLogging 1.10.1, 2.0 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 062ca750..bf36a7fa 100644 --- a/Project.toml +++ b/Project.toml @@ -71,7 +71,7 @@ Random = "1.10" Reexport = "1.2" SafeTestsets = "0.1" SciMLBase = "2.104, 3.0" -SciMLLogging = "2" +SciMLLogging = "1.10.1, 2" StaticArrays = "1" Test = "1.10" Zygote = "0.6.69, 0.7" From 816261f5356725756faf8c95d4e23657c458f44f Mon Sep 17 00:00:00 2001 From: jClugstor Date: Thu, 14 May 2026 21:29:31 -0400 Subject: [PATCH 3/4] add import for MessageLevel --- src/Integrals.jl | 2 +- test/explicit_imports_tests.jl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Integrals.jl b/src/Integrals.jl index 6bf82bd4..9273c43b 100644 --- a/src/Integrals.jl +++ b/src/Integrals.jl @@ -11,7 +11,7 @@ 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 diff --git a/test/explicit_imports_tests.jl b/test/explicit_imports_tests.jl index 07e859e3..24c6d649 100644 --- a/test/explicit_imports_tests.jl +++ b/test/explicit_imports_tests.jl @@ -9,7 +9,7 @@ using LinearAlgebra: norm # which ExplicitImports may not detect properly, so we ignore it @test check_no_stale_explicit_imports( Integrals; ignore = ( - :norm, :AbstractVerbositySpecifier, + :norm, :AbstractVerbositySpecifier, :MessageLevel, :DebugLevel, :Detailed, :ErrorLevel, :Minimal, :None, :Standard, :All, ) ) === nothing From b9128ebaa53330dc6dfc2a7f57b4bf07236135ae Mon Sep 17 00:00:00 2001 From: jClugstor Date: Thu, 14 May 2026 22:26:31 -0400 Subject: [PATCH 4/4] bump patch version --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index bf36a7fa..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]