Compare commits

...

9 Commits

Author SHA1 Message Date
Taiki Endo
4a27a04f8a Release 2.42.33 2024-08-24 19:33:16 +09:00
Taiki Endo
787f5f34b6 Update git-cliff@latest to 2.5.0 2024-08-24 18:11:15 +09:00
Taiki Endo
dea01ef826 Release 2.42.32 2024-08-24 09:31:08 +09:00
Taiki Endo
d323467220 Update cargo-nextest@latest to 0.9.75 2024-08-24 09:30:17 +09:00
Taiki Endo
79e1aeb057 Release 2.42.31 2024-08-24 06:31:34 +09:00
Taiki Endo
668723abbc Update typos@latest to 1.24.1 2024-08-24 06:13:11 +09:00
Taiki Endo
f621218f78 Ignore more clippy lints at workspace level 2024-08-23 22:42:58 +09:00
Taiki Endo
2a0c34a72b Release 2.42.30 2024-08-23 10:51:24 +09:00
Taiki Endo
351260b44f Update typos@latest to 1.23.7 2024-08-23 03:14:21 +09:00
5 changed files with 140 additions and 8 deletions

View File

@@ -10,6 +10,22 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
## [Unreleased] ## [Unreleased]
## [2.42.33] - 2024-08-24
- Update `git-cliff@latest` to 2.5.0.
## [2.42.32] - 2024-08-24
- Update `cargo-nextest@latest` to 0.9.75.
## [2.42.31] - 2024-08-23
- Update `typos@latest` to 1.24.1.
## [2.42.30] - 2024-08-23
- Update `typos@latest` to 1.23.7.
## [2.42.29] - 2024-08-22 ## [2.42.29] - 2024-08-22
- Update `osv-scanner@latest` to 1.8.4. - Update `osv-scanner@latest` to 1.8.4.
@@ -2628,7 +2644,11 @@ Note: This release is considered a breaking change because installing on version
Initial release Initial release
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.42.29...HEAD [Unreleased]: https://github.com/taiki-e/install-action/compare/v2.42.33...HEAD
[2.42.33]: https://github.com/taiki-e/install-action/compare/v2.42.32...v2.42.33
[2.42.32]: https://github.com/taiki-e/install-action/compare/v2.42.31...v2.42.32
[2.42.31]: https://github.com/taiki-e/install-action/compare/v2.42.30...v2.42.31
[2.42.30]: https://github.com/taiki-e/install-action/compare/v2.42.29...v2.42.30
[2.42.29]: https://github.com/taiki-e/install-action/compare/v2.42.28...v2.42.29 [2.42.29]: https://github.com/taiki-e/install-action/compare/v2.42.28...v2.42.29
[2.42.28]: https://github.com/taiki-e/install-action/compare/v2.42.27...v2.42.28 [2.42.28]: https://github.com/taiki-e/install-action/compare/v2.42.27...v2.42.28
[2.42.27]: https://github.com/taiki-e/install-action/compare/v2.42.26...v2.42.27 [2.42.27]: https://github.com/taiki-e/install-action/compare/v2.42.26...v2.42.27

View File

@@ -27,6 +27,7 @@ undocumented_unsafe_blocks = "warn"
# Suppress buggy or noisy clippy lints # Suppress buggy or noisy clippy lints
bool_assert_comparison = { level = "allow", priority = 1 } bool_assert_comparison = { level = "allow", priority = 1 }
borrow_as_ptr = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/8286 borrow_as_ptr = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/8286
cast_lossless = { level = "allow", priority = 1 } # https://godbolt.org/z/Pv6vbGG6E
declare_interior_mutable_const = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/7665 declare_interior_mutable_const = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/7665
doc_markdown = { level = "allow", priority = 1 } doc_markdown = { level = "allow", priority = 1 }
float_cmp = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/7725 float_cmp = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/7725
@@ -36,6 +37,7 @@ manual_assert = { level = "allow", priority = 1 }
manual_range_contains = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/6455#issuecomment-1225966395 manual_range_contains = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/6455#issuecomment-1225966395
missing_errors_doc = { level = "allow", priority = 1 } missing_errors_doc = { level = "allow", priority = 1 }
module_name_repetitions = { level = "allow", priority = 1 } # buggy: https://github.com/rust-lang/rust-clippy/issues?q=is%3Aissue+is%3Aopen+module_name_repetitions module_name_repetitions = { level = "allow", priority = 1 } # buggy: https://github.com/rust-lang/rust-clippy/issues?q=is%3Aissue+is%3Aopen+module_name_repetitions
naive_bytecount = { level = "allow", priority = 1 }
nonminimal_bool = { level = "allow", priority = 1 } # buggy: https://github.com/rust-lang/rust-clippy/issues?q=is%3Aissue+is%3Aopen+nonminimal_bool nonminimal_bool = { level = "allow", priority = 1 } # buggy: https://github.com/rust-lang/rust-clippy/issues?q=is%3Aissue+is%3Aopen+nonminimal_bool
range_plus_one = { level = "allow", priority = 1 } # buggy: https://github.com/rust-lang/rust-clippy/issues?q=is%3Aissue+is%3Aopen+range_plus_one range_plus_one = { level = "allow", priority = 1 } # buggy: https://github.com/rust-lang/rust-clippy/issues?q=is%3Aissue+is%3Aopen+range_plus_one
similar_names = { level = "allow", priority = 1 } similar_names = { level = "allow", priority = 1 }
@@ -46,3 +48,4 @@ struct_field_names = { level = "allow", priority = 1 }
too_many_arguments = { level = "allow", priority = 1 } too_many_arguments = { level = "allow", priority = 1 }
too_many_lines = { level = "allow", priority = 1 } too_many_lines = { level = "allow", priority = 1 }
type_complexity = { level = "allow", priority = 1 } type_complexity = { level = "allow", priority = 1 }
unreadable_literal = { level = "allow", priority = 1 }

View File

@@ -19,10 +19,33 @@
}, },
"license_markdown": "[Apache-2.0](https://github.com/nextest-rs/nextest/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/nextest-rs/nextest/blob/main/LICENSE-MIT)", "license_markdown": "[Apache-2.0](https://github.com/nextest-rs/nextest/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/nextest-rs/nextest/blob/main/LICENSE-MIT)",
"latest": { "latest": {
"version": "0.9.74" "version": "0.9.75"
}, },
"0.9": { "0.9": {
"version": "0.9.74" "version": "0.9.75"
},
"0.9.75": {
"previous_stable_version": "0.9.74",
"x86_64_linux_gnu": {
"etag": "0x8DCC3C2E269D8E1",
"checksum": "34321de06d68a3c39340e13256eae38b6529284842a8c3b7f21c338d1042945e"
},
"x86_64_linux_musl": {
"etag": "0x8DCC3C2FCBD52CA",
"checksum": "9cfb640acad0b3115711a7181102bdd6e56315bf1b4def1351b63c36d0cf95d4"
},
"x86_64_macos": {
"etag": "0x8DCC3C2C8247FE5",
"checksum": "89ed23b1d79434bccd01aee9faf14092d3701b468b13fffc3f3895069b7c3c5d"
},
"x86_64_windows": {
"etag": "0x8DCC3C30432A781",
"checksum": "517371879db44956222d55698e2c7cab96dbb977d7fccffab1314a59a2623205"
},
"aarch64_linux_gnu": {
"etag": "0x8DCC3C2DEB1C3B9",
"checksum": "0fc7af32f0670fefa5d1c8ccd54efff3f97acb862b77dd37fff78db85ea9f309"
}
}, },
"0.9.74": { "0.9.74": {
"previous_stable_version": "0.9.72", "previous_stable_version": "0.9.72",

View File

@@ -28,10 +28,39 @@
}, },
"license_markdown": "[MIT](https://github.com/orhun/git-cliff/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/orhun/git-cliff/blob/main/LICENSE-APACHE)", "license_markdown": "[MIT](https://github.com/orhun/git-cliff/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/orhun/git-cliff/blob/main/LICENSE-APACHE)",
"latest": { "latest": {
"version": "2.4.0" "version": "2.5.0"
}, },
"2": { "2": {
"version": "2.4.0" "version": "2.5.0"
},
"2.5": {
"version": "2.5.0"
},
"2.5.0": {
"x86_64_linux_musl": {
"etag": "0x8DCC414DF7EC2C6",
"checksum": "f5d4388c0f58ec6c37e828ba6923518b3e8ac0eafaa665f5bdc46f32847ca851"
},
"x86_64_macos": {
"etag": "0x8DCC414DF9E8321",
"checksum": "e715f1ac38832faa28a28fa73d81977a7695084dbf4ec75d89f74bcaf1637799"
},
"x86_64_windows": {
"etag": "0x8DCC41588A42559",
"checksum": "26f9fbc60694bb3f821f77703bb7d1cda8694c407dee751770cfb40a98657bcf"
},
"aarch64_linux_musl": {
"etag": "0x8DCC414E17C2650",
"checksum": "f6e570f2bf7214c780e26761de5e39c3fcfe99de7efe056cc2d5ba8026c35831"
},
"aarch64_macos": {
"etag": "0x8DCC414A2165993",
"checksum": "813dbe0b3738ad0a7144e44709d19390de210d9813c7d6ab648c83b58d3fee97"
},
"aarch64_windows": {
"etag": "0x8DCC415AB00A23D",
"checksum": "c13922ad8a3239dd95e7329ca0d689fea390c5d5dbc0ec35c1bcaf76f1a10764"
}
}, },
"2.4": { "2.4": {
"version": "2.4.0" "version": "2.4.0"

63
manifests/typos.json generated
View File

@@ -16,13 +16,70 @@
}, },
"license_markdown": "[MIT](https://github.com/crate-ci/typos/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/crate-ci/typos/blob/master/LICENSE-APACHE)", "license_markdown": "[MIT](https://github.com/crate-ci/typos/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/crate-ci/typos/blob/master/LICENSE-APACHE)",
"latest": { "latest": {
"version": "1.23.6" "version": "1.24.1"
}, },
"1": { "1": {
"version": "1.23.6" "version": "1.24.1"
},
"1.24": {
"version": "1.24.1"
},
"1.24.1": {
"x86_64_linux_musl": {
"etag": "0x8DCC3A8F0B88BC5",
"checksum": "0b9b9effeaae48e040b7cdb704247e1f6a7f441872d631631651773af0f09fe0"
},
"x86_64_macos": {
"etag": "0x8DCC3A8DE334120",
"checksum": "66873990f851ef7bbc860317f848cf6c3f8783f6ab3da6ff449fc0900af07cd7"
},
"x86_64_windows": {
"etag": "0x8DCC3A913197447",
"checksum": "1f236f8edcafed5b8e1895197d7c8ea68ff490efde04bce9365cbc6b03e99836"
},
"aarch64_macos": {
"etag": "0x8DCC3A8E1BDC3DF",
"checksum": "1484a1f905a3cb754bc891c60daab5aead336744720837825f75e6f1647391a9"
}
},
"1.24.0": {
"x86_64_linux_musl": {
"etag": "0x8DCC3A6372789F2",
"checksum": "2bed2ac11cfb08ea1b8217c0b8f7578f4b3e14545043a25b089840ea84e200f3"
},
"x86_64_macos": {
"etag": "0x8DCC3A62A7ACDAF",
"checksum": "6620ae10d3728e62ec7c7ad0edebe8d6cdd1dcd0b36fe5182f73eea8e129cfb2"
},
"x86_64_windows": {
"etag": "0x8DCC3A675D7B684",
"checksum": "77fbf8338110673c64e877b79bf08c92b1d9784a2a9c66b61ce5a150d028d724"
},
"aarch64_macos": {
"etag": "0x8DCC3A630E3B4B5",
"checksum": "1c47c0d361a096d80d91225b2939f3a1b10661aff1abc6e60744e595c5830668"
}
}, },
"1.23": { "1.23": {
"version": "1.23.6" "version": "1.23.7"
},
"1.23.7": {
"x86_64_linux_musl": {
"etag": "0x8DCC2C0CFB9D07D",
"checksum": "3bb50a8e7c3e18750b6309ab34c63ec8ad63de80e50b44be3e8bf4166bf55fe0"
},
"x86_64_macos": {
"etag": "0x8DCC2C0CAB44264",
"checksum": "b1a2f9fd13526e49aac9800f47dac49d4b8b1a9b2306e5c9f30dccca5e9bd874"
},
"x86_64_windows": {
"etag": "0x8DCC2C0CBDB4A2E",
"checksum": "d62746ac3675854e0d2a947ff04afe92034533999689ff11c21542463a43ac0e"
},
"aarch64_macos": {
"etag": "0x8DCC2C0C608089B",
"checksum": "bf4553470b4c582bdc8714f68842008805caab30993b08f7321759181ec8f833"
}
}, },
"1.23.6": { "1.23.6": {
"x86_64_linux_musl": { "x86_64_linux_musl": {