Skip to content

Commit

Permalink
Merge pull request image-rs#220 from image-rs/release-0.2.2
Browse files Browse the repository at this point in the history
Release notes and version bump to 0.2.2
  • Loading branch information
HeroicKatora authored Feb 12, 2022
2 parents cb2b1db + e7bee0e commit b7b8fe4
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,18 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## v0.2.1 (2012-12-09)
## v0.2.2 (2022-02-12)

- Added and SSE3-specific SIMD intrinsic implementation for idct and color
conversion. It will run if applicable targets are detect at _runtime_.
- The SIMD implementation is not bit-for-bit compatible with non-SIMD output.
You can enable the `platform_independent` feature, to ensure that only
bit-for-bit equivalent code runs and output is the same on all platforms.
- Improved performance some more by avoiding bounds checks with array types.
- Multithreading is now used more frequently, without the rayon target, except
on an explicit list of unsupported platforms.

## v0.2.1 (2022-12-09)

- Fix decoding error due to conflict of lossless with some spectral selections.

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jpeg-decoder"
version = "0.2.1"
version = "0.2.2"
authors = ["The image-rs Developers"]
description = "JPEG decoder"
documentation = "https://docs.rs/jpeg-decoder"
Expand Down

0 comments on commit b7b8fe4

Please sign in to comment.