From 10172f11b0781bbfffcb84dd27002924d767ce02 Mon Sep 17 00:00:00 2001 From: nokeo08 Date: Wed, 17 Jun 2026 21:45:00 -0500 Subject: [PATCH] Bump package.json to 1.1.1 to match next release tag The CLI reads its version string from package.json at runtime, so 'move --version' was printing 1.0.0 even after the v1.1.0 tag landed. Bumping the manifest here so v1.1.1 (carrying the tests/ move and the TS LSP fix) ships with matching output: $ move --version move 1.1.1 Discipline going forward: bump package.json BEFORE creating a tag. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 9b8591a..8601ec1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "move", - "version": "1.0.0", + "version": "1.1.1", "private": true, "license": "GPL-3.0-only", "type": "module",