|
1 | 1 | # Changelog |
2 | 2 |
|
| 3 | +## [0.2.0] - 2026-01-26 |
| 4 | + |
| 5 | +### Feature Changes |
| 6 | + |
| 7 | +- feat!: Parse ModelTransformation tag by @kylebarron in https://github.com/developmentseed/async-tiff/pull/179 |
| 8 | +- chore!: Rename `SampleFormat::IEEEFP` to `SampleFormat::Float` by @kylebarron in https://github.com/developmentseed/async-tiff/pull/184 |
| 9 | +- Split traits to get image bytes and metadata bytes by @kylebarron in https://github.com/developmentseed/async-tiff/pull/79 |
| 10 | +- Refactor reading TIFF metadata by @kylebarron in https://github.com/developmentseed/async-tiff/pull/82 |
| 11 | +- Feature gate `object_store` and `reqwest` by @feefladder in https://github.com/developmentseed/async-tiff/pull/71 |
| 12 | +- added predictors by @feefladder in https://github.com/developmentseed/async-tiff/pull/86 |
| 13 | +- feat: Add ZSTD Decoder by @nivdee in https://github.com/developmentseed/async-tiff/pull/157 |
| 14 | +- feat: Exponential read-ahead cache by @kylebarron in https://github.com/developmentseed/async-tiff/pull/140 |
| 15 | +- feat: Use `async-trait` instead of boxed futures for simpler trait interface by @kylebarron in https://github.com/developmentseed/async-tiff/pull/147 |
| 16 | +- feat: Include Endianness as property of TIFF struct by @kylebarron in https://github.com/developmentseed/async-tiff/pull/149 |
| 17 | +- fix: Skip unknown GeoTag keys by @kylebarron in https://github.com/developmentseed/async-tiff/pull/134 |
| 18 | +- feat: Exponential read-ahead cache by @kylebarron in https://github.com/developmentseed/async-tiff/pull/140 |
| 19 | +- feat: Update `Decoder` trait to return `Vec<u8>` instead of `Bytes` by @kylebarron in https://github.com/developmentseed/async-tiff/pull/166 |
| 20 | +- feat: Rust-side Array concept and `ndarray` integration by @kylebarron in https://github.com/developmentseed/async-tiff/pull/165 |
| 21 | +- feat: Implement Array helper for structured, zero-copy data sharing with numpy by @kylebarron in https://github.com/developmentseed/async-tiff/pull/164 |
| 22 | +- feat: add jpeg2k decoder as optional feature by @pmarks in https://github.com/developmentseed/async-tiff/pull/162 |
| 23 | +- feat: Expose gdal_nodata and gdal_metadata tags by @kylebarron in https://github.com/developmentseed/async-tiff/pull/169 |
| 24 | +- docs: Add TIFF references to develop.md by @kylebarron in https://github.com/developmentseed/async-tiff/pull/170 |
| 25 | +- fix: Add handling of unaligned tiles on image border by @kylebarron in https://github.com/developmentseed/async-tiff/pull/180 |
| 26 | + |
| 27 | +### Documentation Changes |
| 28 | + |
| 29 | +- docs: Add docs for `TagValue` by @kylebarron in https://github.com/developmentseed/async-tiff/pull/185 |
| 30 | +- docs: Readme edits by @kylebarron in https://github.com/developmentseed/async-tiff/pull/187 |
| 31 | +- docs: Validate that Rust docs build without warnings; fix docs links by @kylebarron in https://github.com/developmentseed/async-tiff/pull/189 |
| 32 | + |
| 33 | +### Other |
| 34 | + |
| 35 | +- test: Reorganize Rust tests to live inside `src/` by @kylebarron in https://github.com/developmentseed/async-tiff/pull/177 |
| 36 | +- Test opening single-channel OME-TIFF file by @weiji14 in https://github.com/developmentseed/async-tiff/pull/102 |
| 37 | + |
| 38 | +## New Contributors |
| 39 | + |
| 40 | +- @feefladder made their first contribution in https://github.com/developmentseed/async-tiff/pull/71 |
| 41 | +- @weiji14 made their first contribution in https://github.com/developmentseed/async-tiff/pull/92 |
| 42 | +- @alukach made their first contribution in https://github.com/developmentseed/async-tiff/pull/138 |
| 43 | +- @nivdee made their first contribution in https://github.com/developmentseed/async-tiff/pull/157 |
| 44 | +- @pmarks made their first contribution in https://github.com/developmentseed/async-tiff/pull/162 |
| 45 | + |
| 46 | +**Full Changelog**: https://github.com/developmentseed/async-tiff/compare/rust-v0.1.0...rust-v0.2.0 |
| 47 | + |
3 | 48 | ## [0.1.0] - 2025-03-14 |
4 | 49 |
|
5 | 50 | - Initial release. |
|
0 commit comments