Skip to content

Commit

Permalink
Release v0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
AurevoirXavier committed Jun 26, 2024
1 parent 5a47904 commit 4d0bf88
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 14 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,10 @@ jobs:
args: --workspace --all-features --all-targets --locked
- name: Cargo fmt
if: matrix.action == 'fmt'
run: cargo fmt --all -- --check
run: |
rustup toolchain install nightly
rustup component add rustfmt --toolchain nightly
cargo +nightly fmt --all -- --check
- name: Install cargo-nextest
if: matrix.action == 'nextest'
uses: taiki-e/install-action@nextest
Expand Down
10 changes: 7 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
# System
.DS_Store

# Integrated Development Environment
.idea
# Integrated development environment
.vscode

# Package Manager
# Package manager
## Cargo
target
## NPM
node_modules

# Test data
tmp
14 changes: 7 additions & 7 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ license = "GPL-3.0/MIT"
name = "unescaper"
readme = "README.md"
repository = "https:/hack-ink/unescaper"
version = "0.1.4"
version = "0.1.5"

[profile.ci-dev]
incremental = false
Expand Down
4 changes: 2 additions & 2 deletions rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[toolchain]
channel = "nightly"
components = ["cargo", "clippy", "rustc", "rustfmt", "rust-src"]
channel = "stable"
components = ["cargo", "clippy", "rust-src", "rustc", "rustfmt"]
profile = "minimal"

0 comments on commit 4d0bf88

Please sign in to comment.