Skip to content

Commit a65bf67

Browse files
authored
[LibLzma] v1.0.0 (#88)
1 parent 725fd9b commit a65bf67

6 files changed

Lines changed: 12 additions & 15 deletions

File tree

.github/workflows/CI.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ jobs:
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

LibLzma/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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

LibLzma/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ChunkCodecLibLzma"
22
uuid = "e95d29e5-19c5-4afd-ae0f-beb790efacdf"
33
authors = ["nhz2 <nhz2@cornell.edu>"]
4-
version = "0.1.1"
4+
version = "1.0.0"
55

66
[deps]
77
ChunkCodecCore = "0b6fb165-00bc-4d37-ab8b-79f91016dbe1"

LibLzma/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# ChunkCodecLibLzma
22

3-
## Warning: ChunkCodecLibLzma is currently a WIP and its API may drastically change at any time.
4-
53
This package implements the ChunkCodec interface for the following encoders and decoders
64
using the liblzma C library <https://tukaani.org/xz/>
75

LibLzma/test/Project.toml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,3 @@ ChunkCodecLibLzma = "e95d29e5-19c5-4afd-ae0f-beb790efacdf"
55
ChunkCodecTests = "06b1ce50-b741-4199-b118-ba5fe1a70fa7"
66
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
77
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
8-
9-
[sources]
10-
ChunkCodecCore = {path = "../../ChunkCodecCore"}
11-
ChunkCodecLibLzma = {path = ".."}
12-
ChunkCodecTests = {path = "../../ChunkCodecTests"}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 ||||

0 commit comments

Comments
 (0)