From 12f6a79b2a49b29688eb2fd6e12f6f2f3d19d5c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Geis?= Date: Fri, 14 Jun 2024 23:33:21 +0900 Subject: [PATCH] misc: bump version to 0.5.15 --- CHANGELOG.md | 5 +++++ package.build.ts | 4 ++-- package.json | 6 +++--- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5256810e..8fb6302d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 0.5.15 + +- Replace `!textInputFocus` by `dance.inPrompt` to limit `prompt` keybindings to + Dance prompts in VS Code >=1.90. + ## 0.5.14 - **BREAKING**: Fix rotation behavior to match Kakoune and Helix, i.e. now diff --git a/package.build.ts b/package.build.ts index 754d0dd0..1bb2577c 100644 --- a/package.build.ts +++ b/package.build.ts @@ -77,8 +77,8 @@ const selectionDecorationType = { // Package information // ============================================================================ -const version = "0.5.14", - preRelease = 3; +const version = "0.5.15", + preRelease = 1; export const pkg = (modules: Builder.ParsedModule[]) => ({ diff --git a/package.json b/package.json index 2a181453..e705a67b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "dance", "description": "Kakoune-inspired key bindings, modes, menus and scripting.", - "version": "0.5.14", + "version": "0.5.15", "license": "ISC", "author": { "name": "Grégoire Geis", @@ -32,8 +32,8 @@ "vscode:prepublish": "yarn run generate && yarn run compile && yarn run compile-web", "package": "vsce package --allow-star-activation", "publish": "vsce publish --allow-star-activation", - "package:pre": "vsce package --allow-star-activation --pre-release --no-git-tag-version --no-update-package-json 0.5.14003", - "publish:pre": "vsce publish --allow-star-activation --pre-release --no-git-tag-version --no-update-package-json 0.5.14003" + "package:pre": "vsce package --allow-star-activation --pre-release --no-git-tag-version --no-update-package-json 0.5.15001", + "publish:pre": "vsce publish --allow-star-activation --pre-release --no-git-tag-version --no-update-package-json 0.5.15001" }, "devDependencies": { "@types/glob": "^7.2.0",