Skip to content

Commit f8250ff

Browse files
authored
chore: Prepare 0.2 rust release (#190)
* chore: Prepare 0.2 release * update changelog for 0.2
1 parent d7bc731 commit f8250ff

File tree

3 files changed

+48
-3
lines changed

3 files changed

+48
-3
lines changed

CHANGELOG.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,50 @@
11
# Changelog
22

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+
348
## [0.1.0] - 2025-03-14
449

550
- Initial release.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "async-tiff"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
authors = ["Kyle Barron <kyle@developmentseed.org>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/developmentseed/async-tiff"
8-
description = "Low-level asynchronous TIFF reader."
8+
description = "Asynchronous TIFF reader."
99
readme = "README.md"
1010

1111
[dependencies]

python/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)