diff --git a/package.json b/package.json index fbc2f5b..deba465 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@sumelabs/cli", - "version": "0.1.0", + "version": "0.1.1", "description": "Agent-first CLI tooling for sume.com", "type": "module", "license": "MIT", diff --git a/src/lib/version.ts b/src/lib/version.ts index 52c905c..6fa18df 100644 --- a/src/lib/version.ts +++ b/src/lib/version.ts @@ -1 +1 @@ -export const VERSION = "0.1.0"; +export const VERSION = "0.1.1"; diff --git a/test/cli.test.ts b/test/cli.test.ts index 72dd054..fc4cbf9 100644 --- a/test/cli.test.ts +++ b/test/cli.test.ts @@ -287,9 +287,9 @@ describe("CLI", () => { expect(request.url).toBe("/latest"); return { object: "sume_cli_release", - version: "0.1.0", - tag: "v0.1.0", - url: "https://github.com/sumelabs/cli/releases/download/v0.1.0/manifest.json", + version: "0.1.1", + tag: "v0.1.1", + url: "https://github.com/sumelabs/cli/releases/download/v0.1.1/manifest.json", }; }, async (baseUrl) => { @@ -300,11 +300,11 @@ describe("CLI", () => { ); expect(JSON.parse(stdout)).toMatchObject({ object: "update_check", - current_version: "0.1.0", - latest_version: "0.1.0", + current_version: "0.1.1", + latest_version: "0.1.1", update_available: false, install_command: expect.stringContaining("cli.sume.com/install"), - pinned_install_command: expect.stringContaining("SUME_VERSION=0.1.0"), + pinned_install_command: expect.stringContaining("SUME_VERSION=0.1.1"), }); expect(stdout).not.toContain("test-key"); },