diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d20e7cf..217c7554 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # Unreleased +# 1.9.2 + * Disable compile cache if Ruby 3.0.3's ISeq cache bug is detected. * Fix `Kernel.load` behavior: before `load 'a'` would load `a.rb` (and other tried extensions) and wouldn't load `a` unless `development_mode: true`, now only `a` would be loaded and files with extensions wouldn't be. diff --git a/lib/bootsnap/version.rb b/lib/bootsnap/version.rb index f23fba7e..e462ae2d 100644 --- a/lib/bootsnap/version.rb +++ b/lib/bootsnap/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module Bootsnap - VERSION = "1.9.1" + VERSION = "1.9.2" end