File tree Expand file tree Collapse file tree 4 files changed +13
-3
lines changed Expand file tree Collapse file tree 4 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 12
12
fail-fast : false
13
13
matrix :
14
14
version :
15
+ - ' 1.6' # remove at some point in the future, if needed.
15
16
- ' 1.10' # replace by 'lts' when this points to 1.10
16
17
- ' 1' # latest stable 1.x release
17
18
- ' pre'
Original file line number Diff line number Diff line change 1
1
ChunkSplitters.jl Changelog
2
2
=========================
3
3
4
+ Version 3.1.0
5
+ -------------
6
+ - ![ INFO] [ badge-info ] Recover support for Julia 1.6+. All tests pass from 1.9+, and an allocation test fails in 1.6.
7
+
8
+
4
9
Version 3.0.0
5
10
-------------
6
11
- ![ BREAKING] [ badge-breaking ] The new lower compat bound for Julia is 1.10. This implies that support for the old LTS 1.6 has been dropped.
Original file line number Diff line number Diff line change @@ -10,10 +10,10 @@ Aqua = "0.8.5"
10
10
BenchmarkTools = " 1"
11
11
Documenter = " 1"
12
12
OffsetArrays = " 1"
13
- Test = " 1.10 "
13
+ Test = " 1.6 "
14
14
TestItemRunner = " 1"
15
15
TestItems = " 1"
16
- julia = " 1.10 "
16
+ julia = " 1.6 "
17
17
18
18
[extras ]
19
19
Aqua = " 4c88cf16-eb10-579e-8560-4a9242c79595"
Original file line number Diff line number Diff line change 410
410
b = @benchmark $ f_chunks ($ x; n= 4 ) samples = 1 evals = 1
411
411
@test b. allocs == 0
412
412
b = @benchmark $ f_chunks ($ x; size= 10 ) samples = 1 evals = 1
413
- @test b. allocs == 0
413
+ if VERSION >= v " 1.10"
414
+ @test b. allocs == 0
415
+ else
416
+ @test_broken b. allocs == 0
417
+ end
414
418
end
415
419
end
You can’t perform that action at this time.
0 commit comments