From 3f5282d8f7f845067a62db2cf51eac7bde9ebafa Mon Sep 17 00:00:00 2001 From: Soutaro Matsumoto Date: Mon, 30 Sep 2024 17:23:07 +0900 Subject: [PATCH] Version 1.8.0 --- CHANGELOG.md | 7 +++++++ Gemfile.lock | 6 +++--- lib/steep/version.rb | 2 +- steep.gemspec | 2 +- 4 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fb850fe9..df9beaf3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # CHANGELOG +## 1.8.0 (2024-09-30) + +### Type checker core + +* RBS validation ([#1239](https://github.com/soutaro/steep/pull/1239)) +* Add special path for `Kernel#class` method ([#1229](https://github.com/soutaro/steep/pull/1229)) + ## 1.8.0.pre.2 (2024-09-18) ### Type checker core diff --git a/Gemfile.lock b/Gemfile.lock index 5310788e..c3cb0121 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - steep (1.8.0.pre.2) + steep (1.8.0) activesupport (>= 5.1) concurrent-ruby (>= 1.1.10) csv (>= 3.0.9) @@ -12,7 +12,7 @@ PATH logger (>= 1.3.0) parser (>= 3.1) rainbow (>= 2.2.2, < 4.0) - rbs (~> 3.6.0.pre) + rbs (~> 3.6.0) securerandom (>= 0.1) strscan (>= 1.0.0) terminal-table (>= 2, < 4) @@ -73,7 +73,7 @@ GEM rb-fsevent (0.11.2) rb-inotify (0.11.1) ffi (~> 1.0) - rbs (3.6.0.pre.3) + rbs (3.6.0) logger rdoc (6.7.0) psych (>= 4.0.0) diff --git a/lib/steep/version.rb b/lib/steep/version.rb index 27e27bf7..52671ca6 100644 --- a/lib/steep/version.rb +++ b/lib/steep/version.rb @@ -1,3 +1,3 @@ module Steep - VERSION = "1.8.0.pre.2" + VERSION = "1.8.0" end diff --git a/steep.gemspec b/steep.gemspec index 8bd65fd9..e400836f 100644 --- a/steep.gemspec +++ b/steep.gemspec @@ -36,7 +36,7 @@ Gem::Specification.new do |spec| spec.add_runtime_dependency "rainbow", ">= 2.2.2", "< 4.0" spec.add_runtime_dependency "listen", "~> 3.0" spec.add_runtime_dependency "language_server-protocol", ">= 3.15", "< 4.0" - spec.add_runtime_dependency "rbs", "~> 3.6.0.pre" + spec.add_runtime_dependency "rbs", "~> 3.6.0" spec.add_runtime_dependency "concurrent-ruby", ">= 1.1.10" spec.add_runtime_dependency "terminal-table", ">= 2", "< 4" spec.add_runtime_dependency "securerandom", ">= 0.1"