From 267be3a242e12420357f1f932833ff0ec3ea1c46 Mon Sep 17 00:00:00 2001 From: Soutaro Matsumoto Date: Wed, 5 Jul 2023 23:44:12 +0900 Subject: [PATCH] Version 1.5.0.pre.3 --- CHANGELOG.md | 14 ++++++++++++++ Gemfile.lock | 2 +- lib/steep/version.rb | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 467edd1ae..5c49699af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,20 @@ ## master +## 1.5.0.pre.3 (2023-07-05) + +### Type checker core + +* Resolve type names from TypeAssertion and TypeApplication ([#836](https://github.com/soutaro/steep/pull/836)) + +### Commandline tool + +* Replace ElseOnExhaustiveCase by UnreachableBranch from steep/diagnostic/ruby.rb ([#833](https://github.com/soutaro/steep/pull/833)) + +### Language server + +* Reuse the latest result to keep SignatureHelp opened while typing ([#835](https://github.com/soutaro/steep/pull/835)) + ## 1.5.0.pre.2 (2023-07-05) ### Language server diff --git a/Gemfile.lock b/Gemfile.lock index 2f22fe3eb..effdbcf04 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - steep (1.5.0.pre.2) + steep (1.5.0.pre.3) activesupport (>= 5.1) concurrent-ruby (>= 1.1.10) csv (>= 3.0.9) diff --git a/lib/steep/version.rb b/lib/steep/version.rb index c7f204254..4e594aedf 100644 --- a/lib/steep/version.rb +++ b/lib/steep/version.rb @@ -1,3 +1,3 @@ module Steep - VERSION = "1.5.0.pre.2" + VERSION = "1.5.0.pre.3" end