Skip to content
Merged

0.9.4 #135

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
5 changes: 5 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

#### 0.9.4 Fri Jan 30 21:09:57 PST 2026

* Enhance constant lookup to support namespaced constants in ProjectManager
* Fix constant location calculation in CodeFile

#### 0.9.3 Mon Jan 12 18:12:05 PST 2026

* Fix sibling module/class nesting in scope parser
Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
ruby_language_server (0.9.3)
ruby_language_server (0.9.4)
activerecord (~> 8.1)
amatch
bundler
Expand Down Expand Up @@ -278,7 +278,7 @@ CHECKSUMS
rubocop-rake (0.7.1) sha256=3797f2b6810c3e9df7376c26d5f44f3475eda59eb1adc38e6f62ecf027cbae4d
rubocop-rspec (3.9.0) sha256=8fa70a3619408237d789aeecfb9beef40576acc855173e60939d63332fdb55e2
ruby-progressbar (1.13.0) sha256=80fc9c47a9b640d6834e0dc7b3c94c9df37f08cb072b7761e4a71e22cff29b33
ruby_language_server (0.9.3)
ruby_language_server (0.9.4)
securerandom (0.4.1) sha256=cc5193d414a4341b6e225f0cb4446aceca8e50d5e1888743fac16987638ea0b1
shellany (0.0.1) sha256=0e127a9132698766d7e752e82cdac8250b6adbd09e6c0a7fbbb6f61964fedee7
simplecov (0.22.0) sha256=fe2622c7834ff23b98066bb0a854284b2729a569ac659f82621fc22ef36213a5
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.3'
VERSION = '0.9.4'
end