David Tolnay
a7409f2506
Release 1.0.99
2025-01-11 20:32:36 -08:00
David Tolnay
88a5f85d72
Lockfile update
2025-01-11 20:32:13 -08:00
David Tolnay
7184ec551a
Pull in prettyplease precedence improvements
2025-01-11 20:31:49 -08:00
David Tolnay
e32ff18a18
Release 1.0.98
2025-01-07 11:24:37 -08:00
David Tolnay
2c1629df42
Lockfile update
2025-01-07 11:24:18 -08:00
David Tolnay
259b88dd45
Merge pull request #240 from dtolnay/bat
...
Update bat to 0.25
2025-01-07 11:23:59 -08:00
David Tolnay
e6d3b96355
Update bat to 0.25
2025-01-07 11:17:39 -08:00
David Tolnay
311791e2a7
Release 1.0.97
2025-01-05 14:01:53 -08:00
David Tolnay
fdf357c292
Lockfile update
2025-01-05 14:01:34 -08:00
David Tolnay
e0d03c58ae
Pull in prettyplease precedence improvements
2025-01-05 14:01:24 -08:00
David Tolnay
6f85020e4b
Release 1.0.96
2025-01-02 18:55:33 -08:00
David Tolnay
a55dbd98ac
Lockfile update
2025-01-02 18:49:34 -08:00
David Tolnay
a175e9b16f
Update clap-cargo to 0.15
2025-01-02 18:47:47 -08:00
David Tolnay
786dd97fc5
Raise required compiler to 1.81
...
Required by `home` since 0.5.11.
error: package `home v0.5.11` cannot be built because it requires rustc 1.81 or newer, while the currently active rustc version is 1.74.1
Either upgrade to rustc 1.81 or newer, or use
cargo update home@0.5.11 --precise ver
where `ver` is the latest version of `home` supporting rustc 1.74.1
2024-12-16 20:23:48 -08:00
David Tolnay
a42d9253e8
Resolve unnecessary_map_or clippy lint
...
warning: this `map_or` is redundant
--> src/main.rs:676:22
|
676 | let compatible = metadata
| ______________________^
677 | | .as_ref()
678 | | .map_or(false, |m| m.is_compatible_with(assets::BAT_VERSION));
| |_____________________________________________________________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_map_or
= note: `-W clippy::unnecessary-map-or` implied by `-W clippy::all`
= help: to override `-W clippy::all` add `#[allow(clippy::unnecessary_map_or)]`
help: use is_some_and instead
|
676 ~ let compatible = metadata
677 ~ .as_ref().is_some_and(|m| m.is_compatible_with(assets::BAT_VERSION));
|
2024-11-15 19:20:31 -08:00
David Tolnay
850c0550a0
Prevent upload-artifact step from causing CI failure
...
This step has been failing way more than reasonable across my various repos.
With the provided path, there will be 1 file uploaded
Artifact name is valid!
Root directory input is valid!
Attempt 1 of 5 failed with error: Request timeout: /twirp/github.actions.results.api.v1.ArtifactService/CreateArtifact. Retrying request in 3000 ms...
Attempt 2 of 5 failed with error: Request timeout: /twirp/github.actions.results.api.v1.ArtifactService/CreateArtifact. Retrying request in 6029 ms...
Attempt 3 of 5 failed with error: Request timeout: /twirp/github.actions.results.api.v1.ArtifactService/CreateArtifact. Retrying request in 8270 ms...
Attempt 4 of 5 failed with error: Request timeout: /twirp/github.actions.results.api.v1.ArtifactService/CreateArtifact. Retrying request in 12577 ms...
Error: Failed to CreateArtifact: Failed to make request after 5 attempts: Request timeout: /twirp/github.actions.results.api.v1.ArtifactService/CreateArtifact
2024-11-08 21:45:37 -05:00
David Tolnay
4979d19d0f
Release 1.0.95
2024-11-04 18:18:41 -08:00
David Tolnay
40127ed6ec
Lockfile update
2024-11-04 18:18:18 -08:00
David Tolnay
0e99e7b2e9
Fix dependency on yanked version of hashbrown
2024-11-04 18:18:10 -08:00
David Tolnay
3c304e0339
Release 1.0.94
2024-10-31 12:02:54 -07:00
David Tolnay
02e82db425
Lockfile update
2024-10-31 12:02:28 -07:00
David Tolnay
5f8061f177
Merge pull request #239 from dtolnay/styles
...
Use cargo styles for help text
2024-10-31 12:02:09 -07:00
David Tolnay
6b181122de
Use cargo styles for help text
2024-10-31 11:56:58 -07:00
David Tolnay
a6e1d746cd
Release 1.0.93
2024-10-24 00:25:40 -07:00
David Tolnay
db1962200b
Mention bat --list-themes
2024-10-24 00:25:17 -07:00
David Tolnay
c396c12b61
Merge pull request #238 from dtolnay/assets
...
Load custom bat theme assets
2024-10-24 00:23:03 -07:00
David Tolnay
09f73c8182
Load custom bat theme assets
2024-10-24 00:19:52 -07:00
David Tolnay
497a5a94f6
Merge pull request #237 from dtolnay/bat
...
Inline bat's PrettyPrinter logic
2024-10-23 17:46:38 -07:00
David Tolnay
09d0e944d6
Inline bat's PrettyPrinter logic
2024-10-23 17:42:52 -07:00
David Tolnay
3944f5a713
Release 1.0.92
2024-10-23 16:52:31 -07:00
David Tolnay
0dc51326c9
Lockfile update
2024-10-23 16:52:19 -07:00
David Tolnay
f7c828629a
Pull in support for new Rust 1.82 syntax
2024-10-23 16:52:03 -07:00
David Tolnay
ab3eedda1c
Update fs-err dependency to v3
2024-10-23 16:48:35 -07:00
David Tolnay
b33935ef7d
Release 1.0.91
2024-10-19 19:42:05 -07:00
David Tolnay
4cb448a756
Lockfile update
2024-10-19 19:41:41 -07:00
David Tolnay
e0ae005003
Merge pull request #236 from dtolnay/exhaustive
...
Delete non_exhaustive_omitted_patterns lint and exhaustive cfg
2024-10-19 19:41:24 -07:00
David Tolnay
94ef1d73b0
Delete non_exhaustive_omitted_patterns lint and exhaustive cfg
2024-10-19 19:37:58 -07:00
David Tolnay
26e12b16f4
Merge pull request #235 from dtolnay/docstmt
...
Preserve doc attributes on statements
2024-10-19 19:36:38 -07:00
David Tolnay
d225d4305d
Preserve doc attributes on statements
2024-10-19 19:32:04 -07:00
David Tolnay
1f4d6981ca
Handle Expr::RawAddr
2024-10-19 19:29:06 -07:00
David Tolnay
221302e35f
Fix typo in upload-artifact condition
2024-08-25 12:50:33 -07:00
David Tolnay
d1307b565a
Release 1.0.90
2024-08-25 12:46:36 -07:00
David Tolnay
a9c2757891
Lockfile update
2024-08-25 12:46:13 -07:00
David Tolnay
33f0d5bdd9
Support formatting tail calls and precise captures
2024-08-25 12:45:38 -07:00
David Tolnay
a254291b7d
Upload CI Cargo.lock for reproducing failures
2024-08-25 12:12:20 -07:00
David Tolnay
ec62e3142a
Release 1.0.89
2024-07-31 12:16:01 -07:00
David Tolnay
4a15e8aaf4
Lockfile update
2024-07-31 12:15:31 -07:00
David Tolnay
02700a4fe9
Replace yanked version of bytemuck with newer one
...
warning: package `bytemuck v1.16.0` in Cargo.lock is yanked in
registry `crates-io`, consider running without --locked
2024-07-31 12:15:12 -07:00
David Tolnay
ba45fd3547
Merge pull request #230 from dtolnay/panicinfo
...
Ignore PanicInfo deprecation for now
2024-07-21 20:50:00 -07:00
David Tolnay
a867b30bcd
Ignore PanicInfo deprecation for now
...
We'll be able to use PanicHookInfo after dropping support for Rust 1.81.
2024-07-21 19:35:17 -07:00