diff --git a/.github/workflows/hotfix_workflow.yml b/.github/workflows/hotfix_workflow.yml index 6bf560c..43907a6 100644 --- a/.github/workflows/hotfix_workflow.yml +++ b/.github/workflows/hotfix_workflow.yml @@ -66,8 +66,6 @@ jobs: - name: Setup pnpm uses: pnpm/action-setup@v4 - with: - version: 9.15.4 - name: Setup Node.js uses: actions/setup-node@v4 @@ -81,24 +79,15 @@ jobs: - name: Bump version run: node scripts/bump-version.js "${{ github.event.inputs.version }}" - - name: Compile extension - run: pnpm run compile - - - name: Prepare multiplatform package dependencies - run: pnpm install --force - - - name: Package extension - run: pnpm exec vsce package - - - name: Commit updated package.json and dist directory + - name: Commit bumped package.json id: commit uses: EndBug/add-and-commit@v9 with: - add: './out/ ./promptimize-*.vsix ./package.json' + add: './package.json' committer_name: GitHub Actions committer_email: actions@github.com default_author: user_info - message: 'gh-action: updated compiled files and bumped version to ${{ github.event.inputs.version }} (hotfix)' + message: 'gh-action: bumped version to ${{ github.event.inputs.version }} (hotfix)' tag: name: Publish version @@ -134,8 +123,6 @@ jobs: - name: Setup pnpm uses: pnpm/action-setup@v4 - with: - version: 9.15.4 - name: Setup Node.js uses: actions/setup-node@v4 diff --git a/.github/workflows/release_workflow.yml b/.github/workflows/release_workflow.yml index 51b94dd..c054cfb 100644 --- a/.github/workflows/release_workflow.yml +++ b/.github/workflows/release_workflow.yml @@ -66,8 +66,6 @@ jobs: - name: Setup pnpm uses: pnpm/action-setup@v4 - with: - version: 9.15.4 - name: Setup Node.js uses: actions/setup-node@v4 @@ -81,24 +79,15 @@ jobs: - name: Bump version run: node scripts/bump-version.js "${{ github.event.inputs.version }}" - - name: Compile extension - run: pnpm run compile - - - name: Prepare multiplatform package dependencies - run: pnpm install --force - - - name: Package extension - run: pnpm exec vsce package - - - name: Commit updated package.json and dist directory + - name: Commit bumped package.json id: commit uses: EndBug/add-and-commit@v9 with: - add: './out/ ./promptimize-*.vsix ./package.json' + add: './package.json' committer_name: GitHub Actions committer_email: actions@github.com default_author: user_info - message: 'gh-action: updated compiled files and bumped version to ${{ github.event.inputs.version }} (release)' + message: 'gh-action: bumped version to ${{ github.event.inputs.version }} (release)' tag: name: Publish version @@ -134,8 +123,6 @@ jobs: - name: Setup pnpm uses: pnpm/action-setup@v4 - with: - version: 9.15.4 - name: Setup Node.js uses: actions/setup-node@v4 diff --git a/README.md b/README.md index de841b1..28962f3 100644 --- a/README.md +++ b/README.md @@ -174,7 +174,7 @@ See [`docs/architecture/`](docs/architecture/) for detailed architecture documen ### Upgrading from Cursor Whisper -The extension was renamed to **Promptimize** (`promptimize` publisher). If you previously installed `cursor-whisper`: +The extension was renamed to **Promptimize** (`vypdev` publisher). If you previously installed `cursor-whisper`: 1. Uninstall the old **Cursor Whisper** extension 2. Install `promptimize-*.vsix` (or the new Marketplace listing when available) diff --git a/package.json b/package.json index 950c90b..680bfdc 100644 --- a/package.json +++ b/package.json @@ -7,8 +7,8 @@ "color": "#1a1d3a", "theme": "dark" }, - "version": "0.1.0", - "publisher": "promptimize", + "version": "1.0.3", + "publisher": "vypdev", "author": { "name": "Promptimize Team" },