From e4cc280f28c30e3727190129732e21646bf57e42 Mon Sep 17 00:00:00 2001 From: cinco euzebio Date: Sun, 1 Mar 2026 01:13:21 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix:=20bump=20version=20to=200.4?= =?UTF-8?q?.2=20to=20fix=20self-update=20version=20mismatch?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Cargo.toml was still at 0.4.0 while the release was tagged as 0.4.1, causing the --update command to always think there's a new version available. Bumping to 0.4.2 ensures the binary version matches the release tag. --- CHANGELOG.md | 10 ++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f0d7ff..abfb371 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## [0.4.2] - 2026-03-01 + +### Fixed +- Version mismatch: bumped Cargo.toml version to match release tag, fixing `--update` false positive + +## [0.4.1] - 2026-03-01 + +### Added +- Self-update feature (`tmuxido --update`) to update binary from latest GitHub release + ## [0.4.0] - 2026-03-01 ### Added diff --git a/Cargo.lock b/Cargo.lock index e467d1b..efb5b41 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -542,7 +542,7 @@ dependencies = [ [[package]] name = "tmuxido" -version = "0.4.0" +version = "0.4.2" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 27e5018..7c7da5e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tmuxido" -version = "0.4.0" +version = "0.4.2" edition = "2024" [dev-dependencies]