Skip to content

Commit

Permalink
Release version 0.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sorairolake committed Jan 18, 2024
2 parents 1ce93d7 5c83eb4 commit bf6b279
Show file tree
Hide file tree
Showing 24 changed files with 305 additions and 132 deletions.
6 changes: 3 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 7,16 @@ updates:
- package-ecosystem: "cargo"
directory: "/"
schedule:
interval: "weekly"
interval: "daily"
open-pull-requests-limit: 15

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
interval: "daily"
open-pull-requests-limit: 15

- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
interval: "daily"
4 changes: 2 additions & 2 deletions .github/workflows/CD.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 55,11 @@ jobs:
targets: ${{ matrix.target }}
- name: Install cross
if: ${{ matrix.use-cross }}
uses: taiki-e/install-action@v2.23.9
uses: taiki-e/install-action@v2.25.2
with:
tool: cross
- name: Cache build artifacts
uses: Swatinem/[email protected].1
uses: Swatinem/[email protected].3
with:
key: ${{ matrix.target }}
- name: Setup Ruby
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 47,7 @@ jobs:
toolchain: ${{ matrix.toolchain }}
targets: ${{ matrix.target }}
- name: Cache build artifacts
uses: Swatinem/[email protected].1
uses: Swatinem/[email protected].3
with:
key: ${{ matrix.target }}
- name: Run tests
Expand All @@ -67,7 67,7 @@ jobs:
toolchain: stable
components: rustfmt
- name: Cache build artifacts
uses: Swatinem/[email protected].1
uses: Swatinem/[email protected].3
- name: Check code formatted
run: cargo fmt -- --check

Expand All @@ -83,7 83,7 @@ jobs:
toolchain: stable
components: clippy
- name: Cache build artifacts
uses: Swatinem/[email protected].1
uses: Swatinem/[email protected].3
- name: Check no lint warnings
run: cargo clippy -- -D warnings
- name: Check no lint warnings (no default features)
Expand Down
31 changes: 31 additions & 0 deletions .github/workflows/actionlint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 1,31 @@
# SPDX-FileCopyrightText: 2023 Kevin Matthes
# SPDX-FileCopyrightText: 2023 Shun Sakai
#
# SPDX-License-Identifier: Apache-2.0 OR MIT

name: actionlint

on:
pull_request:
paths:
- .github/workflows/*.yaml
push:
paths:
- .github/workflows/*.yaml

permissions:
contents: read

jobs:
validation:
name: Validate
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Check no lint warnings
uses: docker://rhysd/actionlint:latest
with:
args: -color -verbose
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.10.2\...v0.10.3[0.10.3] - 2024-01-18

=== Changed

* Remove last blank line of `--version` ({pull-request-url}/354[#354])

== {compare-url}/v0.10.1\...v0.10.2[0.10.2] - 2024-01-07

=== Changed
Expand Down
Loading

0 comments on commit bf6b279

Please sign in to comment.