Skip to content

Commit 42155f7

Browse files
authored
Update BenchmarkTools version constant (#349)
1 parent 255854d commit 42155f7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/BenchmarkTools.jl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,11 @@ using UUIDs: uuid4
99
using Printf
1010
using Profile
1111

12-
const BENCHMARKTOOLS_VERSION = v"1.0.0"
12+
const BENCHMARKTOOLS_VERSION = if VERSION >= v"1.9"
13+
pkgversion(BenchmarkTools)
14+
else
15+
v"1.4.0"
16+
end
1317

1418
##############
1519
# Parameters #

0 commit comments

Comments
 (0)