From 992f362da83ab739fae4de1c1633ddb3d685b7e9 Mon Sep 17 00:00:00 2001 From: Tamas Nagy Date: Sun, 17 Mar 2024 17:39:47 -0700 Subject: [PATCH] Prep for v0.9.0 release (#142) * Prep for v0.9.0 release Ping for @chrstphrbrns if you have any other PRs in mind for this release * mention new features in readme/docs --- Project.toml | 2 +- README.md | 4 +++- docs/src/index.md | 4 +++- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Project.toml b/Project.toml index 3160a9b8..e389afcf 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "TiffImages" uuid = "731e570b-9d59-4bfa-96dc-6df516fadf69" authors = ["Tamas Nagy "] -version = "0.8.0" +version = "0.9.0" [deps] ColorTypes = "3da002f7-5984-5a60-b8a6-cbb66c0b333f" diff --git a/README.md b/README.md index 709c8b20..69ca7f1c 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,9 @@ written in Julia. - Extensible core for other TIFF packages to build on - Native integration with `Colors.jl` and the Julia Array ecosystem - Memory-mapping for loading images too large to fit in memory -- Support for BigTIFFs for large images +- BigTIFF standard (TIFFs larger than 4 GB) +- Arbitrary bit depths (e.g. 12 or 14 bit cameras) +- Common compression algorithms like LZW and Packbits ## Installation diff --git a/docs/src/index.md b/docs/src/index.md index 5a7b140a..d0c60a85 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -21,8 +21,10 @@ TiffImages.jl supports: - The TIFF 6.0 baseline spec - Thorough testing - HDR images stored as 32bit or 64bit floats -- BigTIFFs +- BigTIFF standard (TIFFs larger than 4 GB) - Memory-mapped and lazy loading/writing +- Arbitrary bit depths (e.g. 12 or 14 bit cameras) +- Common compression algorithms like LZW and Packbits ## Usage