Skip to content

Commit

Permalink
Merge pull request #3 from lbeder/update-crates
Browse files Browse the repository at this point in the history
Update crates
  • Loading branch information
lbeder authored Apr 29, 2019
2 parents b91e7fd + 6ca518c commit ecf9bdc
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.3.3 (2019-04-28)

- Update crates.

## 0.3.2 (2019-03-02)

- Add decoding tests (but only for tests without text embedding, since resvg is unable to render SVG with text).
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
[package]
name = "qrcode-cli"
version = "0.3.2"
version = "0.3.3"
authors = ["Leonid Beder <[email protected]>"]
edition = "2018"

[dependencies]
getopts = "0.2"
qrcode = "0.8"
hex = "0.3.1"
strum = "0.13.0"
strum_macros = "0.13.0"
svgdom = "0.16.0"
hex = "0.3.2"
strum = "0.15.0"
strum_macros = "0.15.0"
svgdom = "0.16.1"

[dev-dependencies]
quirc = "0.0.1"
tempfile = "3.0.7"
image = "0.19.0"
image = "0.21.1"

[dev-dependencies.resvg]
version = "0.5.0"
version = "0.6.1"
features = ["qt-backend"]
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ QR Code SVG Encoder CLI

```bash
Usage: qrcode-cli DATA [options]
Version: 0.3.1
Version: 0.3.3

Options:
-e, --eclevel EC_LEVEL
Expand Down
2 changes: 1 addition & 1 deletion release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ VERSION=$(cargo pkgid | cut -d# -f2 | cut -d: -f2)
rm -rf target/*.tgz target/*.tgz.asc target/release.md

echo "Running clippy..."
cargo clippy --all-targets --all-features -- -D warnings
QT_DIR=/usr/local/opt/qt cargo clippy --all-targets --all-features -- -D warnings

echo "Running tests..."
QT_DIR=/usr/local/opt/qt cargo test --release
Expand Down

0 comments on commit ecf9bdc

Please sign in to comment.