From bc1487253c12ddcfee7e5d46a69b8fb5daefb3ff Mon Sep 17 00:00:00 2001 From: Jonathan Behrens Date: Thu, 11 Jan 2024 21:26:18 -0800 Subject: [PATCH 1/3] Release 0.3.1 --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 21d27212..4f13705b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## v0.3.1 (2024-01-12) + +- Added a WASM SIMD implementation. +- Allow reading the XMP packet. +- Admit more precision values in JPEG Lossless. + ## v0.3.0 (2022-10-17) - The MSRV policy is now managed by the `rust-version` field in `Cargo.toml`. diff --git a/Cargo.toml b/Cargo.toml index cb8a5f9b..043be245 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jpeg-decoder" -version = "0.3.0" +version = "0.3.1" edition = "2021" rust-version = "1.61.0" From 151d90bf603b5ebda75c4ed61ed694d955875f0d Mon Sep 17 00:00:00 2001 From: Jonathan Behrens Date: Sat, 13 Jan 2024 10:46:02 -0800 Subject: [PATCH 2/3] fix workflow --- .github/workflows/rust.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 29e6e2b5..7132a283 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -43,7 +43,7 @@ jobs: strategy: matrix: - rust: [nightly-2022-03-24] + rust: [nightly-2024-01-13] features: ["", "rayon", "nightly_aarch64_neon"] steps: From a02868a857312a66f7aa78980b86b4f79a6e8f55 Mon Sep 17 00:00:00 2001 From: Jonathan Behrens Date: Sat, 13 Jan 2024 11:59:39 -0800 Subject: [PATCH 3/3] correct release date --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f13705b..b9020257 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -## v0.3.1 (2024-01-12) +## v0.3.1 (2024-01-13) - Added a WASM SIMD implementation. - Allow reading the XMP packet.