Skip to content

Commit

Permalink
Release version 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sorairolake committed Apr 16, 2024
2 parents 79f0852 + 0796a69 commit e28dc54
Show file tree
Hide file tree
Showing 11 changed files with 118 additions and 78 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CD.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
targets: ${{ matrix.target }}
- name: Install cross
if: ${{ matrix.use-cross }}
uses: taiki-e/install-action@v2.32.9
uses: taiki-e/install-action@v2.32.17
with:
tool: cross
- name: Cache build artifacts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
with:
args: --exclude "build/site/_/**" -o build/ -r build/
- name: Deploy
uses: peaceiris/actions-gh-pages@v3.9.3
uses: peaceiris/actions-gh-pages@v4.0.0
if: startsWith(github.ref, 'refs/tags/')
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ All notable changes to this project will be documented in this file.
The format is based on https://keepachangelog.com/[Keep a Changelog], and this
project adheres to https://semver.org/[Semantic Versioning].

== {compare-url}/v0.1.1\...v0.1.2[0.1.2] - 2024-04-16

=== Changed

* Update examples in man pages

== {compare-url}/v0.1.0\...v0.1.1[0.1.1] - 2024-04-08

=== Changed
Expand Down
125 changes: 66 additions & 59 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[package]
name = "favico"
version = "0.1.1"
version = "0.1.2"
authors = ["Shun Sakai <sorairolake@protonmail.ch>"]
edition = "2021"
rust-version = "1.74.0"
Expand All @@ -20,16 +20,16 @@ include = ["/LICENSES", "/README.md", "/src"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0.81"
anyhow = "1.0.82"
bat = { version = "0.24.0", default-features = false, features = ["regex-fancy"] }
clap = { version = "4.5.4", features = ["derive", "wrap_help"] }
clap_complete = "4.5.1"
clap_complete = "4.5.2"
clap_complete_nushell = "4.5.1"
csscolorparser = "0.6.2"
image = "0.25.1"
indicatif = "0.17.8"
serde_json = { version = "1.0.115", features = ["preserve_order"] }
sysexits = "0.7.11"
serde_json = { version = "1.0.116", features = ["preserve_order"] }
sysexits = "0.7.13"

[dev-dependencies]
assert_cmd = "2.0.14"
Expand Down

0 comments on commit e28dc54

Please sign in to comment.