diff --git a/CHANGES.md b/CHANGES.md index 5f777e11..5233da1c 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,7 @@ +# Version 0.10.2 + +Republished 0.10.1, fixing an accidentally removed method (`Decoder::find_tag_unsigned_vec`). + # Version 0.10.1 New features: diff --git a/Cargo.toml b/Cargo.toml index 30069517..d61ef4f8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tiff" -version = "0.10.1" +version = "0.10.2" edition = "2021" resolver = "2" diff --git a/src/decoder/mod.rs b/src/decoder/mod.rs index 76bdeea6..59cd3551 100644 --- a/src/decoder/mod.rs +++ b/src/decoder/mod.rs @@ -1281,6 +1281,15 @@ impl Decoder { self.image_ifd().find_tag_unsigned(tag) } + /// Tries to retrieve a vector of all a tag's values and convert them to the desired unsigned + /// type. + pub fn find_tag_unsigned_vec>( + &mut self, + tag: Tag, + ) -> TiffResult>> { + self.image_ifd().find_tag_unsigned_vec(tag) + } + /// Tries to retrieve a tag from the current image directory and convert it to the desired /// unsigned type. Returns an error if the tag is not present. pub fn get_tag_unsigned>(&mut self, tag: Tag) -> TiffResult {