diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..e60adf1 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,6 @@ +# Changelog + +## [0.1.0] - 2025-03-14 + +- Initial release. +- Includes support for reading metadata out of TIFF files in an async way. diff --git a/Cargo.toml b/Cargo.toml index 2616dc9..495c39b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "async-tiff" -version = "0.1.0-beta.1" +version = "0.1.0" edition = "2021" authors = ["Kyle Barron "] license = "MIT OR Apache-2.0" @@ -16,6 +16,8 @@ futures = "0.3.31" jpeg = { package = "jpeg-decoder", version = "0.3.0", default-features = false } num_enum = "0.7.3" object_store = "0.12" +# In the future we could make this feature-flagged, but for now we depend on +# object_store which uses reqwest. reqwest = "0.12" thiserror = "1" tokio = { version = "1.43.0", optional = true } diff --git a/README.md b/README.md index fd80ce0..94f5817 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ An async, low-level [TIFF](https://en.wikipedia.org/wiki/TIFF) reader. - Support for user-defined decompression algorithms. - Tile request merging and concurrency. - +[Full documentation](https://docs.rs/async-tiff/). ## Background