From 4153220d97e02f6d0c31efacdebec2ba1d3c7809 Mon Sep 17 00:00:00 2001 From: Chris Barber Date: Wed, 10 Jan 2024 23:09:02 -0600 Subject: [PATCH] Fix test, version bump --- package.json | 2 +- test/commands/ti-sdk.test.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 82601e81..68a81cc5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "titanium", - "version": "7.0.0-alpha", + "version": "7.0.0-beta1", "author": "TiDev, Inc. ", "description": "Command line interface for building Titanium SDK apps", "type": "module", diff --git a/test/commands/ti-sdk.test.js b/test/commands/ti-sdk.test.js index b130e1f7..158d8841 100644 --- a/test/commands/ti-sdk.test.js +++ b/test/commands/ti-sdk.test.js @@ -323,7 +323,7 @@ describe('ti sdk', () => { const output = stripColor(stdout); assert.match(output, /Titanium Command-Line Interface/); - assert.match(output, /The "select" subcommand is no longer used/); + assert.match(output, /The "select" subcommand is no longer required./); assert.strictEqual(exitCode, 0); }));