Skip to content

Commit 1fd22d0

Browse files
authored
chore(python): Prepare for 0.5 release (#232)
* chore: Bump python to 0.5 * update changelog * reformat
1 parent 47628ec commit 1fd22d0

File tree

3 files changed

+35
-3
lines changed

3 files changed

+35
-3
lines changed

python/CHANGELOG.md

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,36 @@
11
# Changelog
22

3+
## [0.5.0] - 2026-02-03
4+
5+
### Breaking
6+
7+
* feat!: Handle transparency/nodata bit masks by @kylebarron in https://github.com/developmentseed/async-tiff/pull/205
8+
* feat!: Expose colormap as unaltered `[u16]`; implement buffer protocol exchange by @kylebarron in https://github.com/developmentseed/async-tiff/pull/219
9+
* ci(python)!: Remove unsupported linux platforms from wheel build by @kylebarron in https://github.com/developmentseed/async-tiff/pull/222
10+
* feat!: Rename `CompressionMethod` to `Compression` by @kylebarron in https://github.com/developmentseed/async-tiff/pull/213
11+
12+
### New Features
13+
14+
* feat: Add webp decompression support by @kylebarron in https://github.com/developmentseed/async-tiff/pull/171
15+
* feat(python): Add `IFD.fetch_tile` and `IFD.fetch_tiles` by @kylebarron in https://github.com/developmentseed/async-tiff/pull/211
16+
* feat: Change `fetch_tiles` to take tuples of `(x, y)` instead of two separate vecs by @kylebarron in https://github.com/developmentseed/async-tiff/pull/229
17+
* feat: LZMA decoder by @kylebarron in https://github.com/developmentseed/async-tiff/pull/230
18+
19+
### Other
20+
21+
* chore: Add additional license copyright from image-tiff by @kylebarron in https://github.com/developmentseed/async-tiff/pull/200
22+
* fix(python): Fix linked inventories in mkdocs by @kylebarron in https://github.com/developmentseed/async-tiff/pull/212
23+
* docs(python): Add Changelog to docs website by @kylebarron in https://github.com/developmentseed/async-tiff/pull/215
24+
* fix(python): Fix obspec input by @kylebarron in https://github.com/developmentseed/async-tiff/pull/214
25+
* fix(python): Re-export `.enums` at top level Python package by @kylebarron in https://github.com/developmentseed/async-tiff/pull/216
26+
* fix(python): Include README in pypi distribution by @kylebarron in https://github.com/developmentseed/async-tiff/pull/217
27+
* docs(python): Add link to async-geotiff by @kylebarron in https://github.com/developmentseed/async-tiff/pull/218
28+
* docs: Add note to async-geotiff in top-level README by @kylebarron in https://github.com/developmentseed/async-tiff/pull/223
29+
* fix(python): Fix incorrect store import from `__init__.py` by @kylebarron in https://github.com/developmentseed/async-tiff/pull/224
30+
* fix(python): Fix obspec imports by @kylebarron in https://github.com/developmentseed/async-tiff/pull/228
31+
32+
**Full Changelog**: https://github.com/developmentseed/async-tiff/compare/py-v0.4.0...py-v0.5.0
33+
334
## [0.4.0] - 2026-01-26
435

536
### What's Changed
@@ -14,7 +45,8 @@
1445
* perf: Change from LIFO to FIFO ordering for tile decoding by @weiji14 in https://github.com/developmentseed/async-tiff/pull/133
1546
* feat!: Rename `decode_async` to `decode` and add blocking `decode` method by @kylebarron in https://github.com/developmentseed/async-tiff/pull/188
1647

17-
## New Contributors
48+
### New Contributors
49+
1850
* @pmarks made their first contribution in https://github.com/developmentseed/async-tiff/pull/162
1951

2052
**Full Changelog**: https://github.com/developmentseed/async-tiff/compare/py-v0.3.0...py-v0.4.0

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.

python/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "py-async-tiff"
3-
version = "0.5.0-beta.4"
3+
version = "0.5.0"
44
authors = ["Kyle Barron <kyle@developmentseed.org>"]
55
edition = "2021"
66
description = "Fast, Async TIFF reader for Python with a Rust core."

0 commit comments

Comments
 (0)