Skip to content

Commit f7ddf39

Browse files
authored
Merge pull request #74 from bholley/bump_rayon_to_0_8
Bump to rayon 0.8
2 parents 3f6f8b7 + 1dab30a commit f7ddf39

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
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+
## v0.1.13 (2017-06-14)
6+
- Updated `rayon` to 0.8.
7+
58
## v0.1.12 (2017-04-07)
69
- Fixed an integer overflow in `derive_huffman_codes`.
710
- Updated `rayon` to 0.7.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jpeg-decoder"
3-
version = "0.1.12"
3+
version = "0.1.13"
44
authors = ["Ulf Nilsson <kaksmet@gmail.com>"]
55
description = "JPEG decoder"
66
documentation = "https://docs.rs/jpeg-decoder"
@@ -12,7 +12,7 @@ exclude = ["tests/*"]
1212

1313
[dependencies]
1414
byteorder = "1.0"
15-
rayon = { version = "0.7", optional = true }
15+
rayon = { version = "0.8", optional = true }
1616

1717
[dev-dependencies]
1818
docopt = "0.7"

0 commit comments

Comments
 (0)