diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f0a495e..fb850fe9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # CHANGELOG +## 1.8.0.pre.2 (2024-09-18) + +### Type checker core + +* Support non symbol record keys ([#1227](https://github.com/soutaro/steep/pull/1227)) + ## 1.8.0.pre.1 (2024-09-17) ### Type checker core diff --git a/Gemfile.lock b/Gemfile.lock index 2f9d75d4..a6adb41d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - steep (1.8.0.pre.1) + steep (1.8.0.pre.2) 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 e5251476..27e27bf7 100644 --- a/lib/steep/version.rb +++ b/lib/steep/version.rb @@ -1,3 +1,3 @@ module Steep - VERSION = "1.8.0.pre.1" + VERSION = "1.8.0.pre.2" end