From 4297cd0b5735f1e800620f7a13d91ea7c9f7e44c Mon Sep 17 00:00:00 2001 From: Alex Genco Date: Sun, 9 Jun 2024 18:03:32 -0700 Subject: [PATCH] Bump version --- CHANGELOG.md | 5 +++++ lib/neovim/version.rb | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f808554..86ef87a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.10.0 + +- Add `Neovim.start_remote` helper for remote module support + (https://github.com/neovim/neovim-ruby/pull/107) + # 0.9.1 - Fix bug where `Buffer#[]` with `0` returned the last line of the buffer diff --git a/lib/neovim/version.rb b/lib/neovim/version.rb index 5b57fbd..35f4034 100644 --- a/lib/neovim/version.rb +++ b/lib/neovim/version.rb @@ -1,3 +1,3 @@ module Neovim - VERSION = Gem::Version.new("0.9.1") + VERSION = Gem::Version.new("0.10.0") end