CHANGELOG.md in bootsnap-1.12.0 vs CHANGELOG.md in bootsnap-1.13.0

- old
+ new

@@ -1,6 +1,17 @@ # Unreleased +# 1.13.0 + +* Stop decorating `Kernel.load`. This used to be very useful in development because the Rails "classic" autoloader + was using `Kernel.load` in dev and `Kernel.require` in production. But Zeitwerk is now the default, and it doesn't + use `Kernel.load` at all. + + People still using the classic autoloader might want to stick to `bootsnap 1.12`. + +* Add `Bootsnap.unload_cache!`. Applications can call it at the end of their boot sequence when they know + no more code will be loaded to reclaim a bit of memory. + # 1.12.0 * `bootsnap precompile` CLI will now also precompile `Rakefile` and `.rake` files. * Stop decorating `Module#autoload` as it was only useful for supporting Ruby 2.2 and older.