From 5a67d48bbc3680940cc2557e181991da09abba85 Mon Sep 17 00:00:00 2001 From: David Snelling Date: Thu, 19 Jun 2025 16:20:33 -0700 Subject: [PATCH] **chore: rename npm script for publishing and update version to 0.9.0** ### Changes: - Renamed the `publish` script to `deploy` in `package.json` for clarity and consistency with deployment terminology. - Incremented version number from `0.8.11` to `0.9.0` in `src/utils/version.ts`. ### Purpose: Aligned the naming of the deployment script with standard practices to improve readability and maintainability. Updated the version to `0.9.0` to reflect recent changes and enhancements in the project. --- package.json | 2 +- src/utils/version.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 90aabcc7..36e782d2 100644 --- a/package.json +++ b/package.json @@ -37,7 +37,7 @@ "version:patch": "npm version patch", "version:minor": "npm version minor", "version:major": "npm version major", - "publish": "npm run build && npm publish", + "deploy": "npm run build && npm publish", "deploy:cloud:aws": "cd cloud-wrapper && npm run build && npm run deploy:aws", "deploy:cloud:gcp": "cd cloud-wrapper && npm run build && npm run deploy:gcp", "deploy:cloud:cloudflare": "cd cloud-wrapper && npm run build && npm run deploy:cloudflare", diff --git a/src/utils/version.ts b/src/utils/version.ts index 81e321fe..2ff38acc 100644 --- a/src/utils/version.ts +++ b/src/utils/version.ts @@ -3,4 +3,4 @@ * Do not modify this file directly. */ -export const VERSION = '0.8.11'; +export const VERSION = '0.9.0';