From 076edfa3da8593c66090eef5143cf395194d4c80 Mon Sep 17 00:00:00 2001 From: Soutaro Matsumoto Date: Wed, 8 Mar 2023 17:10:43 +0900 Subject: [PATCH] Version 1.3.1 --- CHANGELOG.md | 6 ++++++ Gemfile.lock | 18 +++++++++--------- lib/steep/version.rb | 2 +- 3 files changed, 16 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index de1afa410..7654aa5f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ ## master +## 1.3.1 (2023-03-08) + +### Miscellaneous + +* Require rbs-2.8.x ([#732](https://github.com/soutaro/steep/pull/732)) + ## 1.3.0 (2022-11-25) ### Type checker core diff --git a/Gemfile.lock b/Gemfile.lock index b4bc01a52..0dc098d3d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - steep (1.3.0) + steep (1.3.1) activesupport (>= 5.1) csv (>= 3.0.9) fileutils (>= 1.1.0) @@ -21,13 +21,13 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (7.0.4) + activesupport (7.0.4.2) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) tzinfo (~> 2.0) ast (2.4.2) - concurrent-ruby (1.1.10) + concurrent-ruby (1.2.2) csv (3.2.6) debase (0.2.5.beta2) debase-ruby_core_source (>= 0.10.12) @@ -37,8 +37,8 @@ GEM i18n (1.12.0) concurrent-ruby (~> 1.0) json (2.6.3) - language_server-protocol (3.17.0.2) - listen (3.7.1) + language_server-protocol (3.17.0.3) + listen (3.8.0) rb-fsevent (~> 0.10, >= 0.10.3) rb-inotify (~> 0.9, >= 0.9.10) logger (1.5.3) @@ -48,7 +48,7 @@ GEM minitest-slow_test (0.2.0) minitest (>= 5.0) parallel (1.22.1) - parser (3.1.2.1) + parser (3.2.1.1) ast (~> 2.4.1) pathname (0.2.1) rainbow (3.1.1) @@ -61,12 +61,12 @@ GEM rake (>= 0.8.1) securerandom (0.2.2) stackprof (0.2.23) - strscan (3.0.5) + strscan (3.0.6) terminal-table (3.0.2) unicode-display_width (>= 1.1.1, < 3) - tzinfo (2.0.5) + tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.3.0) + unicode-display_width (2.4.2) PLATFORMS ruby diff --git a/lib/steep/version.rb b/lib/steep/version.rb index 04d6af577..09f36bfb9 100644 --- a/lib/steep/version.rb +++ b/lib/steep/version.rb @@ -1,3 +1,3 @@ module Steep - VERSION = "1.3.0" + VERSION = "1.3.1" end