Skip to content

Commit 34232d8

Browse files
authored
Merge pull request #291 from image-rs/changelog-0.10.1
Populate changelog for 0.10.1
2 parents 50be15e + cbcf6b9 commit 34232d8

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

CHANGES.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
# Version 0.10.1
2+
3+
New features:
4+
- Added a dedicated `Directory` type (#277)
5+
- Expose methods related to `Directory` publicly (#278)
6+
- Implement writing directories (#281, #283)
7+
- Add ICC (color profile) to the set of known tags (#287)
8+
- Added `Decoder.inner()` to access the underlying reader (#289)
9+
- Added methods for reading into a pre-allocated byte buffer (#285)
10+
11+
Changes:
12+
- No longer perform color conversion when decoding embedded JPEG. This fixes decoding for JPEG images with alpha channel. (#274)
13+
- More lenient LZW decoding to match libtiff (#231)
14+
15+
Fixes:
16+
- Fixed seeking multiple times in a row (#279)
17+
118
# Version 0.10.0
219

320
New features:

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tiff"
3-
version = "0.10.0"
3+
version = "0.10.1"
44
edition = "2021"
55
resolver = "2"
66

@@ -28,7 +28,7 @@ zune-jpeg = { version = "0.4.17", optional = true }
2828
[dev-dependencies]
2929
criterion = "0.3.1"
3030
# We may already depend on this via flate2
31-
crc32fast = "1"
31+
crc32fast = "1.5"
3232

3333
[features]
3434
default = ["deflate", "jpeg", "lzw"]

0 commit comments

Comments
 (0)