diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d81fa2..286116c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # CHANGELOG +## 0.7.1 +* Add Rack 3.1 support [#163](https://github.com/testdouble/cypress-rails/pull/163) + ## 0.7.0 git * Add a `CYPRESS_RAILS_CYPRESS_DIR` option for cases where diff --git a/Gemfile.lock b/Gemfile.lock index f5e5f44..e3d95e2 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - cypress-rails (0.7.0) + cypress-rails (0.7.1) puma (>= 3.8.0) railties (>= 5.2.0) @@ -47,8 +47,8 @@ GEM i18n (1.14.1) concurrent-ruby (~> 1.0) io-console (0.7.2) - irb (1.11.2) - rdoc + irb (1.13.1) + rdoc (>= 4.0.0) reline (>= 0.4.2) json (2.7.1) language_server-protocol (3.17.0.3) @@ -56,12 +56,10 @@ GEM loofah (2.22.0) crass (~> 1.0.2) nokogiri (>= 1.12.0) - mini_portile2 (2.8.5) minitest (5.22.2) mutex_m (0.2.0) nio4r (2.7.0) nokogiri (1.16.2) - mini_portile2 (~> 2.8.2) racc (~> 1.4) parallel (1.24.0) parser (3.3.0.5) @@ -97,10 +95,10 @@ GEM zeitwerk (~> 2.6) rainbow (3.1.1) rake (13.1.0) - rdoc (6.6.2) + rdoc (6.6.3.1) psych (>= 4.0.0) regexp_parser (2.9.0) - reline (0.4.2) + reline (0.5.7) io-console (~> 0.5) rexml (3.2.6) rubocop (1.59.0) @@ -133,7 +131,7 @@ GEM standard-performance (1.3.1) lint_roller (~> 1.1) rubocop-performance (~> 1.20.2) - stringio (3.1.0) + stringio (3.1.1) thor (1.3.0) tzinfo (2.0.6) concurrent-ruby (~> 1.0) diff --git a/example/Gemfile.lock b/example/Gemfile.lock index 6853932..0e8e2b7 100644 --- a/example/Gemfile.lock +++ b/example/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - cypress-rails (0.7.0) + cypress-rails (0.7.1) puma (>= 3.8.0) railties (>= 5.2.0) diff --git a/lib/cypress-rails/version.rb b/lib/cypress-rails/version.rb index 36d150a..06e5bc8 100644 --- a/lib/cypress-rails/version.rb +++ b/lib/cypress-rails/version.rb @@ -1,3 +1,3 @@ module CypressRails - VERSION = "0.7.0" + VERSION = "0.7.1" end