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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.5.0"
".": "0.5.1"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
All notable changes are listed here. Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/);
versions follow [SemVer](https://semver.org/).

## [0.5.1](https://github.com/smorin/toggle/compare/v0.5.0...v0.5.1) (2026-07-16)


### Bug Fixes

* use schema-valid 'default' object in .contributors.yml ([#47](https://github.com/smorin/toggle/issues/47)) ([d8c08ed](https://github.com/smorin/toggle/commit/d8c08eda1f8361aa92e7393b167f42985aafad18))

## [0.5.0](https://github.com/smorin/toggle/compare/v0.4.0...v0.5.0) (2026-05-30)


Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["crates/togl-lib", "crates/togl-cli", "crates/togl-ffi"]
resolver = "2"

[workspace.package]
version = "0.5.0"
version = "0.5.1"

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P1 Badge Sync Cargo.lock with the release version

This release bumps the workspace packages to 0.5.1, but Cargo.lock still records togl, togl-ffi, and togl-lib as 0.5.0 (Cargo.lock:924-953). I checked cargo check --help: --locked asserts that Cargo.lock remains unchanged, and the inspected CI/release workflows run Cargo with --locked (for example .github/workflows/ci.yml:49, .github/workflows/ci.yml:70, and .github/workflows/release.yml:200), so those jobs can fail as soon as Cargo tries to reconcile the lockfile with this bumped workspace version. Please include the cargo update --workspace/Cargo.lock changes in the release commit.

Useful? React with 👍 / 👎.

edition = "2021"
authors = ["Steve Morin"]
license = "MIT"
Expand Down
Loading