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
4 changes: 2 additions & 2 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 crates/aqua-registry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aqua-registry"
version = "2025.10.0"
version = "2025.12.12"
edition = "2024"
description = "Aqua registry backend for mise"
authors = ["Jeff Dickey (@jdx)"]
Expand Down
2 changes: 1 addition & 1 deletion crates/vfox/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vfox"
version = "2025.10.0"
version = "2025.12.12"
edition = "2024"
license = "MIT"
description = "Interface to vfox plugins"
Expand Down
15 changes: 6 additions & 9 deletions xtasks/release-plz
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,11 @@ bump_subcrate_if_changed() {
month="$(date +%-m)"

if echo "$cur_version" | grep -qE "^$year\.$month\."; then
# Same year.month, bump patch (e.g., 2025.12.0 -> 2025.12.1)
cargo set-version --bump patch -p "$crate_name"
elif echo "$cur_version" | grep -qE "^$year\."; then
cargo set-version --bump minor -p "$crate_name"
else
cargo set-version "$year.1.0" -p "$crate_name"
# New month or new year, start fresh at YYYY.MM.0
cargo set-version "$year.$month.0" -p "$crate_name"
fi

local new_version
Expand Down Expand Up @@ -131,14 +131,11 @@ bump_and_publish_subcrate() {
month="$(date +%-m)"

if echo "$cur_version" | grep -qE "^$year\.$month\."; then
# Same year.month, bump patch
# Same year.month, bump patch (e.g., 2025.12.0 -> 2025.12.1)
cargo set-version --bump patch -p "$crate_name"
elif echo "$cur_version" | grep -qE "^$year\."; then
# Same year, bump minor (month)
cargo set-version --bump minor -p "$crate_name"
else
# New year
cargo set-version "$year.1.0" -p "$crate_name"
# New month or new year, start fresh at YYYY.MM.0
cargo set-version "$year.$month.0" -p "$crate_name"
fi

local new_version
Expand Down
Loading