From 718a2267cebcbe23611ee2b5f89abcfcdd053134 Mon Sep 17 00:00:00 2001 From: Tiara Rodney Date: Fri, 20 Mar 2026 19:59:28 +0100 Subject: [PATCH 1/2] fix: reverse transition commit order to push oldest-first --- src/commands/PushCommand.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/PushCommand.ts b/src/commands/PushCommand.ts index a5a6e2b..8bebe0b 100644 --- a/src/commands/PushCommand.ts +++ b/src/commands/PushCommand.ts @@ -177,7 +177,7 @@ export class PushCommand extends CLICommand { } const relevantCommits = allCommits.filter(c => parseTodoTransition(c.subject) !== null - ) + ).reverse() if (relevantCommits.length === 0) { console.log("No transitions to push") From 8a15c083eb408b52f90cebba410cb9ed87ac007b Mon Sep 17 00:00:00 2001 From: Tiara Rodney Date: Fri, 20 Mar 2026 20:22:54 +0100 Subject: [PATCH 2/2] chore: bump version to 0.3.2 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ac19d11..f594184 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@byteb4rb1e/mime-todo", - "version": "0.3.1", + "version": "0.3.2", "description": "CLI for the MIME TODO issue tracker specification with Bugzilla integration", "author": "Tiara Rodney ", "license": "CC-BY-ND-4.0",