Skip to content

Commit 4d0bf88

Browse files
committed
Release v0.1.5
1 parent 5a47904 commit 4d0bf88

5 files changed

Lines changed: 21 additions & 14 deletions

File tree

.github/workflows/checks.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,10 @@ jobs:
4343
args: --workspace --all-features --all-targets --locked
4444
- name: Cargo fmt
4545
if: matrix.action == 'fmt'
46-
run: cargo fmt --all -- --check
46+
run: |
47+
rustup toolchain install nightly
48+
rustup component add rustfmt --toolchain nightly
49+
cargo +nightly fmt --all -- --check
4750
- name: Install cargo-nextest
4851
if: matrix.action == 'nextest'
4952
uses: taiki-e/install-action@nextest

.gitignore

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
# System
22
.DS_Store
33

4-
# Integrated Development Environment
5-
.idea
4+
# Integrated development environment
65
.vscode
76

8-
# Package Manager
7+
# Package manager
98
## Cargo
109
target
10+
## NPM
11+
node_modules
12+
13+
# Test data
14+
tmp

Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ license = "GPL-3.0/MIT"
1212
name = "unescaper"
1313
readme = "README.md"
1414
repository = "https://github.com/hack-ink/unescaper"
15-
version = "0.1.4"
15+
version = "0.1.5"
1616

1717
[profile.ci-dev]
1818
incremental = false

rust-toolchain.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[toolchain]
2-
channel = "nightly"
3-
components = ["cargo", "clippy", "rustc", "rustfmt", "rust-src"]
2+
channel = "stable"
3+
components = ["cargo", "clippy", "rust-src", "rustc", "rustfmt"]
44
profile = "minimal"

0 commit comments

Comments
 (0)