From 41588fcfcb262bf5ad882bf225e63361dffb7b92 Mon Sep 17 00:00:00 2001 From: Orjan Ameye Date: Sun, 17 Nov 2024 08:48:35 +0100 Subject: [PATCH] build: bump version (#322) --- Project.toml | 2 +- src/HarmonicBalance.jl | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Project.toml b/Project.toml index 301f9d40..ef46973b 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "HarmonicBalance" uuid = "e13b9ff6-59c3-11ec-14b1-f3d2cc6c135e" authors = ["Jan Kosata ", "Javier del Pino ", "Orjan Ameye "] -version = "0.12.0" +version = "0.12.1" [deps] BijectiveHilbert = "91e7fc40-53cd-4118-bd19-d7fcd1de2a54" diff --git a/src/HarmonicBalance.jl b/src/HarmonicBalance.jl index 487853e0..96a77e42 100644 --- a/src/HarmonicBalance.jl +++ b/src/HarmonicBalance.jl @@ -90,14 +90,14 @@ using .FFTWExt using PrecompileTools: @setup_workload, @compile_workload -# @setup_workload begin -# # Putting some things in `@setup_workload` instead of `@compile_workload` can reduce the size of the -# # precompile file and potentially make loading faster. -# @compile_workload begin -# # all calls in this block will be precompiled, regardless of whether -# # they belong to your package or not (on Julia 1.8 and higher) -# include("precompilation.jl") -# end -# end +@setup_workload begin + # Putting some things in `@setup_workload` instead of `@compile_workload` can reduce the size of the + # precompile file and potentially make loading faster. + @compile_workload begin + # all calls in this block will be precompiled, regardless of whether + # they belong to your package or not (on Julia 1.8 and higher) + include("precompilation.jl") + end +end end # module