Skip to content

chore: next release#718

Merged
jeluard merged 1 commit intomainfrom
jeluard/release
Mar 6, 2026
Merged

chore: next release#718
jeluard merged 1 commit intomainfrom
jeluard/release

Conversation

@jeluard
Copy link
Contributor

@jeluard jeluard commented Mar 6, 2026

Summary by CodeRabbit

  • Chores
    • Updated project version to 0.1.2 with coordinated version updates across internal packages.
    • Release and packaging metadata updated so the project and its internal components report the new 0.1.2 version to users and tooling.

Copilot AI review requested due to automatic review settings March 6, 2026 07:40
@coderabbitai
Copy link
Contributor

coderabbitai bot commented Mar 6, 2026

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 17ed44b5-6433-487c-9eba-dd753a059201

📥 Commits

Reviewing files that changed from the base of the PR and between 6e57863 and 28033fb.

⛔ Files ignored due to path filters (1)
  • Cargo.lock is excluded by !**/*.lock
📒 Files selected for processing (1)
  • Cargo.toml

Walkthrough

Workspace version bump: updated workspace.package.version and internal workspace dependency versions from 0.1.1 to 0.1.2 in Cargo.toml; one crate (amaru-uplc-turbo) remains at 0.1.0.

Changes

Cohort / File(s) Summary
Workspace Cargo manifest
Cargo.toml
Bumped workspace.package.version 0.1.1 → 0.1.2 and updated workspace dependency entries for internal crates to version 0.1.2 (amaru, amaru-consensus, amaru-iter-borrow, amaru-kernel, amaru-ledger, amaru-mempool, amaru-metrics, amaru-minicbor-extra, amaru-network, amaru-observability, amaru-observability-macros, amaru-ouroboros, amaru-ouroboros-traits, amaru-plutus, amaru-progress-bar, amaru-protocols, amaru-sim, amaru-stores, amaru-tracing-json, pure-stage). amaru-uplc-turbo remains at 0.1.0. Path references unchanged.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Possibly related PRs

Suggested reviewers

  • KtorZ

Poem

Ahoy — versions climb like a boss fight’s final phase,
0.1.2 lands neat, no cutscenes, no delays.
Twenty crates marching like a synthwave parade,
paths intact, no DLC, just a tidy upgrade. 🎮✨

🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title 'chore: next release' directly corresponds to the changeset, which bumps the workspace version from 0.1.1 to 0.1.2 across all internal dependencies—a classic pre-release version update.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch jeluard/release

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

Bumps the workspace and internal crate versions for the next release.

Changes:

  • Update [workspace.package] version from 0.1.1 to 0.1.2
  • Update internal path dependency versions from 0.1.1 to 0.1.2

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment on lines +106 to +115
amaru-observability-macros = { path = "crates/amaru-observability/macros", version = "0.1.2" }
amaru-ouroboros = { path = "crates/amaru-ouroboros", version = "0.1.2" }
amaru-ouroboros-traits = { path = "crates/amaru-ouroboros-traits", version = "0.1.2" }
amaru-plutus = { path = "crates/amaru-plutus", version = "0.1.2" }
amaru-progress-bar = { path = "crates/amaru-progress-bar", version = "0.1.2" }
amaru-protocols = { path = "crates/amaru-protocols", version = "0.1.2" }
amaru-sim = { path = "crates/amaru-sim", version = "0.1.2" }
amaru-stores = { path = "crates/amaru-stores", version = "0.1.2" }
amaru-tracing-json = { path = "crates/amaru-tracing-json", version = "0.1.2" }
pure-stage = { path = "crates/pure-stage", version = "0.1.2" }
Copy link

Copilot AI Mar 6, 2026

Choose a reason for hiding this comment

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

These internal path dependencies duplicate the workspace version in many places, which makes each release bump noisier and easier to miss. Consider using Cargo workspace inheritance (e.g., version.workspace = true for these deps, and/or defining them under [workspace.dependencies] with workspace-inherited version) so the version only needs to be bumped once.

Suggested change
amaru-observability-macros = { path = "crates/amaru-observability/macros", version = "0.1.2" }
amaru-ouroboros = { path = "crates/amaru-ouroboros", version = "0.1.2" }
amaru-ouroboros-traits = { path = "crates/amaru-ouroboros-traits", version = "0.1.2" }
amaru-plutus = { path = "crates/amaru-plutus", version = "0.1.2" }
amaru-progress-bar = { path = "crates/amaru-progress-bar", version = "0.1.2" }
amaru-protocols = { path = "crates/amaru-protocols", version = "0.1.2" }
amaru-sim = { path = "crates/amaru-sim", version = "0.1.2" }
amaru-stores = { path = "crates/amaru-stores", version = "0.1.2" }
amaru-tracing-json = { path = "crates/amaru-tracing-json", version = "0.1.2" }
pure-stage = { path = "crates/pure-stage", version = "0.1.2" }
amaru-observability-macros = { path = "crates/amaru-observability/macros", version.workspace = true }
amaru-ouroboros = { path = "crates/amaru-ouroboros", version.workspace = true }
amaru-ouroboros-traits = { path = "crates/amaru-ouroboros-traits", version.workspace = true }
amaru-plutus = { path = "crates/amaru-plutus", version.workspace = true }
amaru-progress-bar = { path = "crates/amaru-progress-bar", version.workspace = true }
amaru-protocols = { path = "crates/amaru-protocols", version.workspace = true }
amaru-sim = { path = "crates/amaru-sim", version.workspace = true }
amaru-stores = { path = "crates/amaru-stores", version.workspace = true }
amaru-tracing-json = { path = "crates/amaru-tracing-json", version.workspace = true }
pure-stage = { path = "crates/pure-stage", version.workspace = true }

Copilot uses AI. Check for mistakes.
Copy link
Contributor Author

Choose a reason for hiding this comment

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

this doesn't appear to be a valid syntax?

Signed-off-by: jeluard <jeluard@users.noreply.github.com>
@codecov
Copy link

codecov bot commented Mar 6, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
see 3 files with indirect coverage changes

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@jeluard jeluard merged commit 6df1cc7 into main Mar 6, 2026
27 checks passed
@jeluard jeluard deleted the jeluard/release branch March 6, 2026 08:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants