Skip to content

Commit f5b3d66

Browse files
authored
Merge pull request #52 from JuliaFolds2/support_julia16
recover support for older Julia versions
2 parents ed80005 + 49a0be6 commit f5b3d66

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
version:
15+
- '1.6' # remove at some point in the future, if needed.
1516
- '1.10' # replace by 'lts' when this points to 1.10
1617
- '1' # latest stable 1.x release
1718
- 'pre'

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
ChunkSplitters.jl Changelog
22
=========================
33

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+
49
Version 3.0.0
510
-------------
611
- ![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.

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ Aqua = "0.8.5"
1010
BenchmarkTools = "1"
1111
Documenter = "1"
1212
OffsetArrays = "1"
13-
Test = "1.10"
13+
Test = "1.6"
1414
TestItemRunner = "1"
1515
TestItems = "1"
16-
julia = "1.10"
16+
julia = "1.6"
1717

1818
[extras]
1919
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"

test/runtests.jl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,6 +410,10 @@ end
410410
b = @benchmark $f_chunks($x; n=4) samples = 1 evals = 1
411411
@test b.allocs == 0
412412
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
414418
end
415419
end

0 commit comments

Comments
 (0)