Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.35.1 #1408

Closed
wants to merge 5 commits into from

Update changelog

4749a4d
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Closed

Release v0.35.1 #1408

Update changelog
4749a4d
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy succeeded Apr 12, 2024 in 1s

reviewdog [clippy] report

reported by reviewdog 🐶

Findings (0)
Filtered Findings (1)

kvstore-test/tests/tendermint.rs|346 col 43| error: accessing first element with decoded_tx_split.get(0)
--> kvstore-test/tests/tendermint.rs:346:43
|
346 | ... let key = decoded_tx_split.get(0).unwrap();
| ^^^^^^^^^^^^^^^^^^^^^^^ help: try: decoded_tx_split.first()
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#get_first
= note: -D clippy::get-first implied by -D warnings
= help: to override -D warnings add #[allow(clippy::get_first)]