diff --git a/CHANGELOG.md b/CHANGELOG.md index a1dd4eb..35aa6fb 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.10.0] — 2026-05-31 + ### Added - `dG` and `cG` — delete/change from cursor to end of buffer. `yG` already worked, now all three operators work with `G`. @@ -221,7 +223,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.9.0...HEAD +[Unreleased]: https://github.com/oribarilan/vimcode/compare/v0.10.0...HEAD +[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 [0.7.0]: https://github.com/oribarilan/vimcode/compare/v0.6.1...v0.7.0 diff --git a/README.md b/README.md index 4221d1f..578fd53 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.9.0"] + "plugin": ["vimcode@git+https://github.com/oribarilan/vimcode.git#v0.10.0"] } ``` diff --git a/package.json b/package.json index a25e1b0..0623faf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vimcode", - "version": "0.9.0", + "version": "0.10.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 d07ef59..16630c6 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.9.0"; +export const VERSION = "0.10.0"; // GitHub API returns fresh content immediately; raw.githubusercontent.com // is CDN-cached for up to 5 minutes which delays update detection.