Skip to content

Commit 9ee9ec7

Browse files
author
HeroicKatora
authored
Merge pull request #208 from image-rs/release-0.2
Add release notes
2 parents e885b4a + 36dbf82 commit 9ee9ec7

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5-
## Unreleased
5+
## v0.2.0 (2021-12-04)
66

77
- 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
911

1012
## v0.1.22 (2021-01-27)
1113

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
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"]
55
description = "JPEG decoder"
66
documentation = "https://docs.rs/jpeg-decoder"
77
repository = "https://github.com/image-rs/jpeg-decoder"

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ A Rust library for decoding JPEGs.
1313
Cargo.toml:
1414
```toml
1515
[dependencies]
16-
jpeg-decoder = "0.1"
16+
jpeg-decoder = "0.2"
1717
```
1818

1919
main.rs:
@@ -32,4 +32,7 @@ fn main() {
3232
```
3333

3434
## 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).

0 commit comments

Comments
 (0)