From d653813e3531a174fe63b26ea38bc8fbd826632f Mon Sep 17 00:00:00 2001 From: Jean Boussier Date: Wed, 24 Nov 2021 16:05:52 +0100 Subject: [PATCH] Release 1.9.2 --- CHANGELOG.md | 2 ++ lib/bootsnap/version.rb | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) 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