File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2323 # Expose matched filters as job 'packages' output variable
2424 packages : ${{ steps.filter.outputs.changes }}
2525 steps :
26- - uses : actions/checkout@v4
27- - uses : dorny/paths-filter@v3
26+ - uses : actions/checkout@v6
27+ - uses : dorny/paths-filter@v4
2828 id : filter
2929 with :
3030 filters : |
@@ -102,14 +102,14 @@ jobs:
102102 - os : macos-latest
103103 version : ' 1.6'
104104 steps :
105- - uses : actions/checkout@v4
105+ - uses : actions/checkout@v6
106106 - uses : julia-actions/setup-julia@v2
107107 with :
108108 version : ${{ matrix.version }}
109109 arch : ${{ matrix.arch }}
110110 show-versioninfo : true
111111 project : ${{matrix.package}}
112- - uses : julia-actions/cache@v2
112+ - uses : julia-actions/cache@v3
113113 - name : Run the tests
114114 shell : julia --color=yes {0}
115115 run : |
@@ -139,7 +139,7 @@ jobs:
139139 - uses : julia-actions/julia-processcoverage@v1
140140 with :
141141 directories : ${{matrix.package}}/src
142- - uses : codecov/codecov-action@v4
142+ - uses : codecov/codecov-action@v6
143143 with :
144144 token : ${{ secrets.CODECOV_TOKEN }} # required
145- file : lcov.info
145+ files : lcov.info
Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66
77## Unreleased
88
9+ ## [ v1.0.0] ( https://github.com/JuliaIO/ChunkCodecs.jl/tree/LibLzma-v1.0.0 ) - 2026-04-08
10+
11+ ### The API is now stable
12+
913## [ v0.1.1] ( https://github.com/JuliaIO/ChunkCodecs.jl/tree/LibLzma-v0.1.1 ) - 2025-12-17
1014
1115### Added
Original file line number Diff line number Diff line change 11name = " ChunkCodecLibLzma"
22uuid = " e95d29e5-19c5-4afd-ae0f-beb790efacdf"
33authors = [" nhz2 <nhz2@cornell.edu>" ]
4- version = " 0.1.1 "
4+ version = " 1.0.0 "
55
66[deps ]
77ChunkCodecCore = " 0b6fb165-00bc-4d37-ab8b-79f91016dbe1"
Original file line number Diff line number Diff line change 11# ChunkCodecLibLzma
22
3- ## Warning: ChunkCodecLibLzma is currently a WIP and its API may drastically change at any time.
4-
53This package implements the ChunkCodec interface for the following encoders and decoders
64using the liblzma C library < https://tukaani.org/xz/ >
75
Original file line number Diff line number Diff line change @@ -5,8 +5,3 @@ ChunkCodecLibLzma = "e95d29e5-19c5-4afd-ae0f-beb790efacdf"
55ChunkCodecTests = " 06b1ce50-b741-4199-b118-ba5fe1a70fa7"
66Random = " 9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
77Test = " 8dfed614-e22c-5e08-85e1-65c5234f0b40"
8-
9- [sources ]
10- ChunkCodecCore = {path = " ../../ChunkCodecCore" }
11- ChunkCodecLibLzma = {path = " .." }
12- ChunkCodecTests = {path = " ../../ChunkCodecTests" }
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ A consistent Julia interface for lossless encoding and decoding of bytes in memo
1010| ---| ---| ---| ---| ---| ---|
1111| Zstd | .zst RFC8878 | ChunkCodecLibZstd | ✅ | ✅ | ✅ |
1212| Zlib | RFC1950 | ChunkCodecLibZlib | ✅ | ✅ | ✅ |
13- | XZ | .xz | ChunkCodecLibLzma | ✅ | ✅ | |
13+ | XZ | .xz | ChunkCodecLibLzma | ✅ | ✅ | ✅ |
1414| SzipHDF5 | | ChunkCodecLibAec | ✅ | ✅ | |
1515| Snappy | | ChunkCodecLibSnappy | ✅ | ✅ | ✅ |
1616| Shuffle | | ChunkCodecCore | ✅ | ✅ | ✅ |
You can’t perform that action at this time.
0 commit comments