Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.5.1] - 2026-04-24

### Changed

- **MSRV bumped to `1.88`** (was `1.85`) — required by the `zip` 8.5 build-dependency in `tenderdash-proto-compiler`. Consumers of `tenderdash-proto` must build with rustc ≥ 1.88.
- `zip` build-dependency updated from `7.0` to `8.5` in `tenderdash-proto-compiler` (#193).
- Reference Dockerfiles bumped from `rust:1.85-*` to `rust:1.88-*`.

### Fixed

- `tenderdash-proto-compiler`: actionable download-hint message and stale-archive cleanup in the Tenderdash source fetch script (#188).
- `tenderdash-abci` tests: updated `bollard` import to use `bollard::models::ContainerCreateBody` (bollard 0.20.2 dropped the re-export via `bollard::secret::*`).

### CI / Build

- `actions/upload-artifact` 6 → 7 (#183).
- `docker/setup-buildx-action` 3.12.0 → 4.0.0 (#185).
- `docker/build-push-action` 6.18.0 → 7.0.0 (#186) and 7.0.0 → 7.1.0 (#194).
- `actions/deploy-pages` 4 → 5 (#191).
- `actions/configure-pages` 5 → 6 (#192).
- `actions/upload-pages-artifact` 4 → 5 (#195).

[1.5.1]: https://github.com/dashpay/rs-tenderdash-abci/compare/v1.5.0...v1.5.1
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ members = ["abci", "proto-compiler", "proto"]

[workspace.package]

rust-version = "1.85"
version = "1.5.0"
rust-version = "1.88"
version = "1.5.1"
Comment on lines 5 to +8

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Add missing edition = "2024" to workspace.package.

The workspace.package section specifies rust-version but is missing the edition field. As per coding guidelines, Cargo.toml files must set Rust edition to 2024 and specify rust-version in workspace and crate Cargo manifests.

📝 Proposed fix to add edition field
 [workspace.package]
 
 rust-version = "1.88"
+edition = "2024"
 version = "1.5.1"

Based on learnings: Set Rust edition to 2024 and specify rust-version in workspace and crate Cargo manifests.

📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
[workspace.package]
rust-version = "1.85"
version = "1.5.0"
rust-version = "1.88"
version = "1.5.1"
[workspace.package]
rust-version = "1.88"
edition = "2024"
version = "1.5.1"
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@Cargo.toml` around lines 5 - 8, The workspace.package table in Cargo.toml is
missing the edition field; update the workspace.package section to include
edition = "2024" alongside the existing rust-version = "1.88" and version =
"1.5.1" so the manifest explicitly sets the Rust edition, and apply the same
edition = "2024" addition to any crate-level Cargo.toml files as required by
project guidelines.

Loading