From 9385e240a535a0531e38e47fb7230f387fe26a7d Mon Sep 17 00:00:00 2001 From: ori Date: Mon, 8 Jun 2026 14:33:27 +0300 Subject: [PATCH] chore: release v0.11.0 --- CHANGELOG.md | 5 ++++- README.md | 2 +- package.json | 2 +- src/version.ts | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index def3239..ee1b238 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). Version ## [Unreleased] +## [0.11.0] — 2026-06-08 + ### Added - `:q`, `:quit`, and `:wq` quit OpenCode from the command palette ([#19](https://github.com/oribarilan/vimcode/issues/19)). Since `:` already opens the palette, typing `:q` and pressing Enter exits the app. @@ -229,7 +231,8 @@ First release. Modal editing for the OpenCode prompt. > `g` fires immediately as buffer-home instead of waiting for `gg`. The `yy` line tracker drifts on clicks and arrow keys. Visual mode and text objects aren't feasible without cursor position access. -[Unreleased]: https://github.com/oribarilan/vimcode/compare/v0.10.0...HEAD +[Unreleased]: https://github.com/oribarilan/vimcode/compare/v0.11.0...HEAD +[0.11.0]: https://github.com/oribarilan/vimcode/compare/v0.10.0...v0.11.0 [0.10.0]: https://github.com/oribarilan/vimcode/compare/v0.9.0...v0.10.0 [0.9.0]: https://github.com/oribarilan/vimcode/compare/v0.8.0...v0.9.0 [0.8.0]: https://github.com/oribarilan/vimcode/compare/v0.7.0...v0.8.0 diff --git a/README.md b/README.md index 21cbf04..3c43a61 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Add to your `tui.json` (or `.opencode/tui.json`): ```json { - "plugin": ["vimcode@git+https://github.com/oribarilan/vimcode.git#v0.10.0"] + "plugin": ["vimcode@git+https://github.com/oribarilan/vimcode.git#v0.11.0"] } ``` diff --git a/package.json b/package.json index 0623faf..8d7fde9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vimcode", - "version": "0.10.0", + "version": "0.11.0", "description": "Vim keybindings for the OpenCode prompt", "author": "Ori Bar-ilan", "license": "MIT", diff --git a/src/version.ts b/src/version.ts index 16630c6..c7f8994 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1,5 +1,5 @@ // Keep in sync with package.json on each release. -export const VERSION = "0.10.0"; +export const VERSION = "0.11.0"; // GitHub API returns fresh content immediately; raw.githubusercontent.com // is CDN-cached for up to 5 minutes which delays update detection.