baton-cli 0.2.2 → 0.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/cli.js +1 -1
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -743,7 +743,7 @@ async function status() {
743
743
 
744
744
  // src/cli.ts
745
745
  var program = new Command();
746
- program.name("baton").description("Git-backed session handoff for Claude Code").version("0.2.2");
746
+ program.name("baton").description("Git-backed session handoff for Claude Code").version("0.3.0");
747
747
  program.command("push").description("Push all sessions for the current project to GitHub").option("-f, --force", "Overwrite remote even if ahead").action(async (options) => {
748
748
  await push({ force: options.force });
749
749
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "baton-cli",
3
- "version": "0.2.2",
3
+ "version": "0.3.1",
4
4
  "description": "Git-backed session handoff for Claude Code",
5
5
  "type": "module",
6
6
  "bin": {