Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

#### 0.9.6 Sat Apr 11 12:40:46 PDT 2026

* Better lookup - including climbing the current scopes and fallback to global search

#### 0.9.5 Tue Feb 10 22:04:44 PST 2026

* Fix some scope lookups
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
ruby_language_server (0.9.5)
ruby_language_server (0.9.6)
activerecord (~> 8.1)
amatch
bundler
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ For gem release
* bump version in [version.rb](lib/ruby_language_server/version.rb) file and [Gemfile.lock](Gemfile.lock)
* [CHANGELOG.txt](CHANGELOG.txt)
* merge to master, etc
* `make gem_release`
* `make gem_release` # now done automagically by github action

For docker release
* `make publish_cross_platform_image`
Expand Down
2 changes: 1 addition & 1 deletion lib/ruby_language_server/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module RubyLanguageServer
VERSION = '0.9.5'
VERSION = '0.9.6'
end
Loading