From d05fa2ce3842df2a79add8d9d36020ae947ae110 Mon Sep 17 00:00:00 2001 From: Andrew Watson Date: Fri, 24 Mar 2023 20:38:59 -0700 Subject: [PATCH] Version 0.3.1 Bump (#188) * Version bump to 0.3.1 * 0.4.0, including updated release notes --- packages/cli/package.json | 4 ++-- packages/cli/src/index.ts | 4 ++-- packages/cli/src/utils.ts | 2 +- packages/core/package.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/cli/package.json b/packages/cli/package.json index e5caa5c..8df4ba9 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@solana-mobile/dapp-store-cli", - "version": "0.3.0", + "version": "0.4.0", "license": "Apache-2.0", "type": "module", "sideEffects": false, @@ -40,7 +40,7 @@ "shx": "^0.3.4" }, "dependencies": { - "@solana-mobile/dapp-store-publishing-tools": "workspace:0.3.0", + "@solana-mobile/dapp-store-publishing-tools": "workspace:0.4.0", "@solana/web3.js": "1.68.0", "@types/semver": "^7.3.13", "ajv": "^8.11.0", diff --git a/packages/cli/src/index.ts b/packages/cli/src/index.ts index 67a0927..2490d74 100644 --- a/packages/cli/src/index.ts +++ b/packages/cli/src/index.ts @@ -51,8 +51,8 @@ function resolveBuildToolsPath(buildToolsPath: string | undefined) { function latestReleaseMessage() { showMessage( `Publishing Tools Version ${ Constants.CLI_VERSION }`, - "- The new field \`short_description\` has been added to the set of strings required in the `catalog` section for each locale.\n" + - "- You can now specify a release-specific icon in the release \`media\` section in your configuration file.", "warning" + "- Bug fixes, including enforcing \`short_description\` maximum length of 50 characters.", + "warning" ) } diff --git a/packages/cli/src/utils.ts b/packages/cli/src/utils.ts index 142db33..6701290 100644 --- a/packages/cli/src/utils.ts +++ b/packages/cli/src/utils.ts @@ -22,7 +22,7 @@ const runImgSize = util.promisify(imageSize); const runExec = util.promisify(exec); export class Constants { - static CLI_VERSION = "0.3.0"; + static CLI_VERSION = "0.4.0"; static CONFIG_FILE_NAME = "config.yaml"; } diff --git a/packages/core/package.json b/packages/core/package.json index 1212624..a338079 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@solana-mobile/dapp-store-publishing-tools", - "version": "0.3.0", + "version": "0.4.0", "license": "Apache-2.0", "type": "module", "sideEffects": false,