diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fadc79f..b7c6eef 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,7 +26,7 @@ jobs: - name: Package Extension run: | yarn lint - vsce package --pre-release + vsce package - name: Test PAT if: ${{ github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/') }} env: @@ -48,4 +48,4 @@ jobs: env: VSCE_PAT: ${{ secrets.VSCODE_MARKETPLACE_PAT }} run: | - vsce publish --pre-release -i raspberry-pi-pico-*.vsix + vsce publish -i raspberry-pi-pico-*.vsix diff --git a/CHANGELOG.md b/CHANGELOG.md index 51a7c9b..77abe9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,16 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how - Release 1 +## [0.15.1] - 2024-08-09 + +### Fixed +- Fix project compilation after moving build directory (#29) +- Fix issues with debugging with spaces in the path +- Fix pioasm path + +### Changed +- No longer packaged as pre-release, to remove additional prompt when installing the extension + ## [0.15.0] - 2024-08-08 ### Added diff --git a/package.json b/package.json index 4073081..9500e6c 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "raspberry-pi-pico", "displayName": "Raspberry Pi Pico", "description": "The official VS Code extension for Raspberry Pi Pico development. It includes several features to simplify project creation and deployment. (Single folder workspaces only)", - "version": "0.15.0", + "version": "0.15.1", "author": "paulober", "publisher": "raspberry-pi", "icon": "./images/extension-icon.png",