From 7a4bde7671d3487918719726a7d600a434d7f171 Mon Sep 17 00:00:00 2001 From: Soutaro Matsumoto Date: Sat, 22 Oct 2022 22:35:59 +0900 Subject: [PATCH] Version 1.2.1 --- CHANGELOG.md | 6 ++++++ Gemfile.lock | 2 +- lib/steep/version.rb | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 198f9411b..99a3c5e37 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ ## master +## 1.2.1 (2022-10-22) + +### Type checker core + +* Fix type narrowing on case-when ([#662](https://github.com/soutaro/steep/pull/662)) + ## 1.2.0 (2022-10-08) ### Commandline tool diff --git a/Gemfile.lock b/Gemfile.lock index a8c53de05..b187f4dcd 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - steep (1.2.0) + steep (1.2.1) activesupport (>= 5.1) csv (>= 3.0.9) fileutils (>= 1.1.0) diff --git a/lib/steep/version.rb b/lib/steep/version.rb index a4dcfaf47..603b41c48 100644 --- a/lib/steep/version.rb +++ b/lib/steep/version.rb @@ -1,3 +1,3 @@ module Steep - VERSION = "1.2.0" + VERSION = "1.2.1" end