From 7e307b0aadb793456320a5119300cc710ebba8cf Mon Sep 17 00:00:00 2001 From: Mark Wiemer <7833360+mark-wiemer@users.noreply.github.com> Date: Sat, 18 Jan 2025 14:29:38 -0800 Subject: [PATCH] =?UTF-8?q?6.4.3=20-=202025-01-18=20=F0=9F=8E=86=20(#597)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- changelog.md | 8 +++++--- docs/Development.md | 4 ++-- package-lock.json | 4 ++-- package.json | 2 +- 4 files changed, 10 insertions(+), 8 deletions(-) diff --git a/changelog.md b/changelog.md index 1ef5ba6b..b8f9352f 100644 --- a/changelog.md +++ b/changelog.md @@ -1,13 +1,15 @@ # Changelog -## 6.4.3 - 2025-01-11 🎆 +## 6.4.3 - 2025-01-18 🎆 - Fix IniWrite IntelliSense ([#590](https://github.com/mark-wiemer/ahkpp/issues/590)) +- Add [comprehensive settings reference](./docs/settings.md) in Markdown and improve docs within the settings editor ([#581](https://github.com/mark-wiemer/ahkpp/issues/581)) +- Update internal dependencies to Node 22, npm 11, and Mocha 11 to improve developer security and developer experience ([#583](https://github.com/mark-wiemer/ahkpp/issues/583)) ## 6.4.2 - 2024-12-16 🎄 -- Reduce required VS Code version to 1.68 (#574) -- Update internal dependencies for security (#577) +- Reduce required VS Code version to 1.68 ([#574](https://github.com/mark-wiemer/ahkpp/issues/574)) +- Update internal dependencies for security ([#577](https://github.com/mark-wiemer/ahkpp/issues/577)) ## 6.4.1 - 2024-11-09 🛠️ diff --git a/docs/Development.md b/docs/Development.md index da79d23b..43da7720 100644 --- a/docs/Development.md +++ b/docs/Development.md @@ -32,9 +32,9 @@ Unless otherwise specified, commit messages don't matter. 1. Bump the version in `package.json` 1. Run `npm i` to update `package-lock.json` 1. Commit the changes. -1. Open a PR. For style, the title of the PR should be e.g. `v1.2.3`. The PR description should contain the changelog entry, including the heading for this version. +1. Open a PR. For style, the title of the PR should be e.g. `1.2.3 - 2020-12-31 ❄️`. The PR description should contain the changelog entry, including the heading for this version. 1. Fix any remaining issues with the PR. -1. Merge the PR. Commit message should be the changelog heading, e.g. `v1.2.3 - 2020-12-31 ❄️ (#456)` +1. Merge the PR. Commit message should be the changelog heading, e.g. `1.2.3 - 2020-12-31 ❄️ (#456)` 1. `git checkout main && git pull && npm run package` 1. Install the new version: 1. Select the newly-created `.vsix` file. diff --git a/package-lock.json b/package-lock.json index f02df6fa..cd64bcf2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "vscode-autohotkey-plus-plus", - "version": "6.4.2", + "version": "6.4.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "vscode-autohotkey-plus-plus", - "version": "6.4.2", + "version": "6.4.3", "license": "See license.md", "dependencies": { "@vscode/debugadapter": "^1.57.0", diff --git a/package.json b/package.json index 6c51fffa..006f54f2 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "vscode-autohotkey-plus-plus", "displayName": "AHK++ (AutoHotkey Plus Plus)", - "version": "6.4.2", + "version": "6.4.3", "description": "AutoHotkey v1 and v2 language support for Visual Studio Code: IntelliSense, debugging, formatting, and more!", "categories": [ "Debuggers",