File tree Expand file tree Collapse file tree 3 files changed +11
-6
lines changed Expand file tree Collapse file tree 3 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 2
2
All notable changes to this project will be documented in this file.
3
3
This project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
4
4
5
- ## Unreleased
5
+ ## v0.2.0 (2021-12-04)
6
6
7
7
- Added Lossless JPEG support
8
- - Minimum supported rust version changed to 1.36
8
+ - Added support for EXIF and ICC data
9
+ - Minimum supported rust version changed to 1.48 and no formal policy for bump releases for now
10
+ - Minor stability fixes on invalid jpeg images
9
11
10
12
## v0.1.22 (2021-01-27)
11
13
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " jpeg-decoder"
3
- version = " 0.1.22 "
4
- authors = [" Ulf Nilsson <kaksmet@gmail.com> " ]
3
+ version = " 0.2.0 "
4
+ authors = [" The image-rs Developers " ]
5
5
description = " JPEG decoder"
6
6
documentation = " https://docs.rs/jpeg-decoder"
7
7
repository = " https://github.com/image-rs/jpeg-decoder"
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ A Rust library for decoding JPEGs.
13
13
Cargo.toml:
14
14
``` toml
15
15
[dependencies ]
16
- jpeg-decoder = " 0.1 "
16
+ jpeg-decoder = " 0.2 "
17
17
```
18
18
19
19
main.rs:
@@ -32,4 +32,7 @@ fn main() {
32
32
```
33
33
34
34
## Requirements
35
- This crate compiles only with rust >= 1.36.
35
+
36
+ This crate compiles with rust >= 1.48. Minimum Supported Rust Version:
37
+ - All releases ` 0.1.* ` compile with rust >= 1.36.
38
+ - The releases ` 0.2.* ` may bump Rust Version requirements (TBD).
You can’t perform that action at this time.
0 commit comments