From c535ee27654c046c8d325526188840175b3e400e Mon Sep 17 00:00:00 2001 From: aleidk Date: Tue, 15 Apr 2025 15:20:53 -0400 Subject: [PATCH] chore: update bump tasks --- .justfile | 3 +++ cog.toml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.justfile b/.justfile index 36f73d9..1744558 100644 --- a/.justfile +++ b/.justfile @@ -23,3 +23,6 @@ deploy: clean: podman system prune --build cargo clean + +bump: + cog bump --auto diff --git a/cog.toml b/cog.toml index e1f8ae4..7d3f06a 100644 --- a/cog.toml +++ b/cog.toml @@ -9,7 +9,7 @@ skip_ci = "[skip ci]" skip_untracked = false pre_bump_hooks = [ "sed -E -i 's/(\"version\":) \"[0-9.]{5}\"/\\1 \"{{version|0.0.1}}\"/gi' package.json", - "cargo build --release", + "just publish", "echo 'bumping from {{latest|0.0.0}} to {{version|0.0.1}}'", "cargo bump {{version|0.0.1}}", ]