From 57d96014dd0e1c91a3383f17960666498545132b Mon Sep 17 00:00:00 2001 From: ori Date: Sat, 13 Jun 2026 14:03:34 +0300 Subject: [PATCH] chore: release v0.14.0 --- CHANGELOG.md | 5 ++++- README.md | 4 ++-- package.json | 2 +- src/version.ts | 2 +- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5003bd3..b313b05 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.14.0] — 2026-06-13 + ### Added - `/vim` toggle command to disable/enable vim mode. Persisted across restarts. @@ -277,7 +279,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.13.0...HEAD +[Unreleased]: https://github.com/oribarilan/vimcode/compare/v0.14.0...HEAD +[0.14.0]: https://github.com/oribarilan/vimcode/compare/v0.13.0...v0.14.0 [0.13.0]: https://github.com/oribarilan/vimcode/compare/v0.12.2...v0.13.0 [0.12.2]: https://github.com/oribarilan/vimcode/compare/v0.12.1...v0.12.2 [0.12.1]: https://github.com/oribarilan/vimcode/compare/v0.12.0...v0.12.1 diff --git a/README.md b/README.md index 2c03299..eb87f6e 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.13.0"] + "plugin": ["vimcode@git+https://github.com/oribarilan/vimcode.git#v0.14.0"] } ``` @@ -40,7 +40,7 @@ To pass options, use the tuple form in `tui.json`: ```json { - "plugin": [["vimcode@git+https://github.com/oribarilan/vimcode.git#v0.12.2", { "updateCheck": false }]] + "plugin": [["vimcode@git+https://github.com/oribarilan/vimcode.git#v0.14.0", { "updateCheck": false }]] } ``` diff --git a/package.json b/package.json index 6eea358..d942a83 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vimcode", - "version": "0.13.0", + "version": "0.14.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 b51f23b..8117268 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.13.0"; +export const VERSION = "0.14.0"; // GitHub API returns fresh content immediately; raw.githubusercontent.com // is CDN-cached for up to 5 minutes which delays update detection.