Skip to content

Commit

Permalink
Release version 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sorairolake committed Aug 22, 2022
2 parents 648eac2 + 0e47a54 commit 5e8b568
Show file tree
Hide file tree
Showing 36 changed files with 1,360 additions and 92 deletions.
4 changes: 1 addition & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,4 @@ updates:
schedule:
interval: "daily"
ignore:
- dependency-name: "image"
- dependency-name: "qrcode"
- dependency-name: "rqrr"
- dependency-name: "image-for-encoding"
17 changes: 17 additions & 0 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,24 @@ jobs:
command: build
args: --target ${{ matrix.target }}
use-cross: ${{ matrix.use-cross }}
- name: Build a package (no default features)
uses: actions-rs/[email protected]
with:
command: build
args: --target ${{ matrix.target }} --no-default-features
use-cross: ${{ matrix.use-cross }}
- name: Run tests
uses: actions-rs/[email protected]
with:
command: test
args: --target ${{ matrix.target }}
use-cross: ${{ matrix.use-cross }}
- name: Run tests (no default features)
uses: actions-rs/[email protected]
with:
command: test
args: --target ${{ matrix.target }} --no-default-features
use-cross: ${{ matrix.use-cross }}

rustfmt:
name: Rustfmt
Expand Down Expand Up @@ -99,3 +111,8 @@ jobs:
with:
command: clippy
args: -- -D warnings
- name: Check no lint warnings (no default features)
uses: actions-rs/[email protected]
with:
command: clippy
args: --no-default-features -- -D warnings
7 changes: 7 additions & 0 deletions BUILD.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,10 @@ cd qrtool
----
just build
----

== Crate features

`decode-from-svg`::

Enable decoding from the SVG image.
This is enabled by default.
17 changes: 17 additions & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,23 @@ project adheres to https://semver.org/[Semantic Versioning].

toc::[]

== {compare-url}/v0.1.0\...v0.2.0[0.2.0] - 2022-08-22

=== Added

* `--verbose` option and `--metadata` option.
These options are for printing the metadata.
* `--foreground` option and `--background` option.
These options are for changing foreground and background colors.

=== Changed

* Add more input image formats supported by the
https://crates.io/crates/image[`image`] crate to `--type` option of `decode`
command
* Change to be able to disable decoding from the SVG image
* Rename `unicode` to `terminal` of `--type` option of `encode` command

== {project-url}/releases/tag/v0.1.0[0.1.0] - 2022-08-18

=== Added
Expand Down
Loading

0 comments on commit 5e8b568

Please sign in to comment.