Skip to content

Commit

Permalink
Merge pull request image-rs#74 from bholley/bump_rayon_to_0_8
Browse files Browse the repository at this point in the history
Bump to rayon 0.8
  • Loading branch information
kaksmet authored Jun 14, 2017
2 parents 3f6f8b7 + 1dab30a commit f7ddf39
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## v0.1.13 (2017-06-14)
- Updated `rayon` to 0.8.

## v0.1.12 (2017-04-07)
- Fixed an integer overflow in `derive_huffman_codes`.
- Updated `rayon` to 0.7.
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jpeg-decoder"
version = "0.1.12"
version = "0.1.13"
authors = ["Ulf Nilsson <[email protected]>"]
description = "JPEG decoder"
documentation = "https://docs.rs/jpeg-decoder"
Expand All @@ -12,7 +12,7 @@ exclude = ["tests/*"]

[dependencies]
byteorder = "1.0"
rayon = { version = "0.7", optional = true }
rayon = { version = "0.8", optional = true }

[dev-dependencies]
docopt = "0.7"
Expand Down

0 comments on commit f7ddf39

Please sign in to comment.