From 606b2459dbf2f4abb3da35a95c93874ee20bc192 Mon Sep 17 00:00:00 2001 From: Shantanu Mane Date: Wed, 17 Jun 2026 06:28:03 +0530 Subject: [PATCH] chore(release): bump version to 1.0.0 Set .version to 1.0.0 so CI (build-and-push + release-lts) stamps the 1.0.0 images and ldflags-embedded main.Version. Update the Go local-run fallback and pyproject version to match. Co-Authored-By: Claude Opus 4.8 (1M context) --- .version | 2 +- cmd/server/main.go | 2 +- pyproject.toml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.version b/.version index 6e8bf73..3eefcb9 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.1.0 +1.0.0 diff --git a/cmd/server/main.go b/cmd/server/main.go index c012e06..f3c835b 100644 --- a/cmd/server/main.go +++ b/cmd/server/main.go @@ -20,7 +20,7 @@ import ( var ( Env = "development" - Version = "0.1.0" + Version = "1.0.0" CommitHash = "abc1234" BuildTime = "2024-06-01T12:00:00Z" Author = "RndmCodeGuy" diff --git a/pyproject.toml b/pyproject.toml index 5f74981..6df13f2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "mpiper" -version = "0.1.0" +version = "1.0.0" description = "A consumer for the mpiper queue system" authors = [ {name = "Shantanu Mane",email = "shantanu.mane.200@outlook.com"} @@ -32,7 +32,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] package-mode = false name = "mpiper" -version = "0.1.0" +version = "1.0.0" description = "A consumer for the mpiper queue system" authors = ["Shantanu Mane "]