From 1ad058f2640e15cbc68b72a1cee9c0e99b3bb477 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cristian=20Pallar=C3=A9s?= Date: Wed, 11 Feb 2026 16:36:53 +0100 Subject: [PATCH] wip --- CHANGELOG.md | 5 +++++ CONTRIBUTING.md | 11 +++++++++++ package-lock.json | 4 ++-- package.json | 2 +- 4 files changed, 19 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8df5301..77b119e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 1.3.0 (2026-02-11) + +- fix: localstack installation on ubuntu/i3 (#77) +- feat: support more vscode-flavored editors (#81) + ## 1.2.8 (2025-11-19) - chore: Bump glob to tackle CVE diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a84c9ca..99baec1 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -42,3 +42,14 @@ To install the generated VSIX file in Visual Studio Code: 2. Click the three-dot menu in the top right. 3. Select **Install from VSIX...**. 4. Choose the `.vsix` file. + +## Releasing a new version + +To release a new version of the extension, you need to: + +1. Create a branch using the new version as the name (e.g. `v1.3.0`) +2. Update the version in `package.json` and run `npm install` +3. Update the `CHANGELOG.md` file +4. Push the branch to GitHub +5. Create a pull request in GitHub +6. While the pull request is open, execute the `Publish Extension` workflow targetting the new branch diff --git a/package-lock.json b/package-lock.json index f20c949..eda9bba 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "localstack", - "version": "1.2.8", + "version": "1.3.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "localstack", - "version": "1.2.8", + "version": "1.3.0", "license": "Apache-2.0", "devDependencies": { "@biomejs/biome": "^2.2.3", diff --git a/package.json b/package.json index 93c1271..9cb719c 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "publisher": "LocalStack", "displayName": "LocalStack Toolkit", "description": "LocalStack - Run locally, deploy globally!", - "version": "1.2.8", + "version": "1.3.0", "engines": { "node": ">=20", "vscode": "^1.83.0"