This commit is contained in:
bin-ly 2024-04-19 11:51:17 +02:00 committed by GitHub
commit 1510363527
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@
- `bat --squeeze-limit` to set the maximum number of empty consecutive when using `--squeeze-blank`, see #1441 (@eth-p) and #2665 (@einfachIrgendwer0815)
- `PrettyPrinter::squeeze_empty_lines` to support line squeezing for bat as a library, see #1441 (@eth-p) and #2665 (@einfachIrgendwer0815)
- Syntax highlighting for JavaScript files that start with `#!/usr/bin/env bun` #2913 (@sharunkumar)
- Enable the 'conversions' feature, see #2938(@bin-ly)
## Bugfixes

View File

@ -66,7 +66,7 @@ regex = { version = "1.10.2", optional = true }
walkdir = { version = "2.4", optional = true }
bytesize = { version = "1.3.0" }
encoding_rs = "0.8.33"
os_str_bytes = { version = "~6.6", optional = true }
os_str_bytes = { version = "~6.6", optional = true, features = ["conversions"] }
run_script = { version = "^0.10.1", optional = true}
[dependencies.git2]