From b723cac24ed1ce98b00e1311525e19e2ca4d97c0 Mon Sep 17 00:00:00 2001 From: Henry Schimke Date: Sat, 11 Feb 2023 09:37:34 -0600 Subject: [PATCH] update to version 0.3.1 --- Cargo.toml | 4 ++-- README.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2795448..844fb51 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "rxing" -version = "0.3.0" +version = "0.3.1" description="A rust port of the zxing barcode library." license="Apache-2.0" -repository="https://github.com/hschimke/rxing" +repository="https://github.com/rxing-core/rxing" keywords = ["barcode", "2d_barcode", "1d_barcode", "barcode_reader", "barcode_writer"] edition = "2021" exclude = [ diff --git a/README.md b/README.md index 2fe85e8..5cfe4b0 100644 --- a/README.md +++ b/README.md @@ -70,6 +70,7 @@ fn main() { ``` ## Latest Release Notes +* *v0.3.1* -> Support for closures in NEEDS_RESULT_CALLBACK. rxing has moved to https://github.com/rxing-core/rxing. * *v0.2.21* -> Adds partial support for detecting and decoding rotated MaxiCode symbols. Adds support for basic serialization of many public facing datatypes using serde (gated behind `serde` feature). Rotation detection is no longer gated behind the `experimental_features` flag. Rotation of maxicodes is simplistic. Current tests detect about 50% of codes when rotated 90 degrees. Detection of skewed MaxiCodes is now behind `experimental_features`.