**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.
This commit is contained in:
David Snelling 2025-06-19 16:20:33 -07:00
parent 8273bb3301
commit 5a67d48bbc
2 changed files with 2 additions and 2 deletions

View file

@ -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",

View file

@ -3,4 +3,4 @@
* Do not modify this file directly.
*/
export const VERSION = '0.8.11';
export const VERSION = '0.9.0';