diff --git a/CHANGELOG.md b/CHANGELOG.md index e961bb1..6392767 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] + +## [0.2.1] - 2024-06-09 + +### Added + +- Documentation for `RSpec::ExampleGroups` DSL methods like `it`, `fit`, `example` etc. + ### Fixed - Fix nameless `subject` method completion inside nested `context` blocks diff --git a/Gemfile.lock b/Gemfile.lock index 785c418..917e244 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - solargraph-rspec (0.2.0) + solargraph-rspec (0.2.1) solargraph (~> 0.49, >= 0.49.0) GEM @@ -19,7 +19,7 @@ GEM io-console (0.7.2) irb (1.6.3) reline (>= 0.3.0) - jaro_winkler (1.5.6) + jaro_winkler (1.6.0) json (2.7.2) kramdown (2.4.0) rexml @@ -31,7 +31,7 @@ GEM racc (~> 1.4) optparse (0.5.0) parallel (1.24.0) - parser (3.3.1.0) + parser (3.3.2.0) ast (~> 2.4.1) racc profile-viewer (0.0.2) @@ -42,12 +42,12 @@ GEM rake (13.2.1) rbs (2.8.4) regexp_parser (2.9.2) - reline (0.5.7) + reline (0.5.8) io-console (~> 0.5) reverse_markdown (2.1.1) nokogiri - rexml (3.2.8) - strscan (>= 3.0.9) + rexml (3.2.9) + strscan rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) diff --git a/lib/solargraph/rspec/version.rb b/lib/solargraph/rspec/version.rb index 7ab8dcd..12b0464 100644 --- a/lib/solargraph/rspec/version.rb +++ b/lib/solargraph/rspec/version.rb @@ -2,6 +2,6 @@ module Solargraph module Rspec - VERSION = '0.2.0' + VERSION = '0.2.1' end end