Skip to content

Commit 6c88ccc

Browse files
authored
Bump async-tiff crate to 0.1 (#55)
* Bump to 0.1.0 * Update README
1 parent 35eaf11 commit 6c88ccc

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Changelog
2+
3+
## [0.1.0] - 2025-03-14
4+
5+
- Initial release.
6+
- Includes support for reading metadata out of TIFF files in an async way.

Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "async-tiff"
3-
version = "0.1.0-beta.1"
3+
version = "0.1.0"
44
edition = "2021"
55
authors = ["Kyle Barron <kyle@developmentseed.org>"]
66
license = "MIT OR Apache-2.0"
@@ -16,6 +16,8 @@ futures = "0.3.31"
1616
jpeg = { package = "jpeg-decoder", version = "0.3.0", default-features = false }
1717
num_enum = "0.7.3"
1818
object_store = "0.12"
19+
# In the future we could make this feature-flagged, but for now we depend on
20+
# object_store which uses reqwest.
1921
reqwest = "0.12"
2022
thiserror = "1"
2123
tokio = { version = "1.43.0", optional = true }

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ An async, low-level [TIFF](https://en.wikipedia.org/wiki/TIFF) reader.
99
- Support for user-defined decompression algorithms.
1010
- Tile request merging and concurrency.
1111

12-
<!-- [Full documentation](https://docs.rs/async-tiff/). (version 0.1.0 will be published when object_store 0.12 is released.) -->
12+
[Full documentation](https://docs.rs/async-tiff/).
1313

1414
## Background
1515

0 commit comments

Comments
 (0)