From 7d8fcff199b7cf8c54884e2dbecac85fa0d717ae Mon Sep 17 00:00:00 2001 From: Xavier Noria Date: Sat, 19 Oct 2024 00:57:43 +0200 Subject: [PATCH] Ready for 2.7.1 --- CHANGELOG.md | 10 ++++++++++ lib/zeitwerk/version.rb | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9448d46..f0aacc2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # CHANGELOG +## 2.7.1 (19 October 2024) + +* Micro-optimization in a hot path. + +* Raises `Zeitwerk::Error` if an autoloaded constant expected to represent a + namespace does not store a class or module object. + +* Adds `truffleruby-head` to CI, except for autoloading thread-safety + (see why in https://github.com/oracle/truffleruby/issues/2431). + ## 2.7.0 (11 October 2024) * [Explicit namespaces](https://github.com/fxn/zeitwerk#explicit-namespaces) can diff --git a/lib/zeitwerk/version.rb b/lib/zeitwerk/version.rb index d0839de..9486428 100644 --- a/lib/zeitwerk/version.rb +++ b/lib/zeitwerk/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Zeitwerk - VERSION = "2.7.0" + VERSION = "2.7.1" end