From 99e32d4d47b436d886240e039de5b6c000a9fc91 Mon Sep 17 00:00:00 2001 From: Neven Sajko Date: Wed, 5 Nov 2025 04:13:02 +0100 Subject: [PATCH 1/2] doc: `parentmodule(::Method)`: correct compat note version bound Correct the version bound in the compat note in the doc string: on v1.9 the call immediately results in a `MethodError`: ``` MethodError: no method matching parentmodule(::Method) ``` Doc string (and feature) introduced in PR #47548. --- base/reflection.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/base/reflection.jl b/base/reflection.jl index b3252df78d1b8..4948f144f36fd 100644 --- a/base/reflection.jl +++ b/base/reflection.jl @@ -1036,8 +1036,8 @@ end Return the module in which the given method `m` is defined. -!!! compat "Julia 1.9" - Passing a `Method` as an argument requires Julia 1.9 or later. +!!! compat "Julia 1.10" + Passing a `Method` as an argument requires Julia 1.10 or later. """ parentmodule(m::Method) = m.module From 3dc7f253f730825f934443a7f6dfc77dc8712da8 Mon Sep 17 00:00:00 2001 From: Neven Sajko Date: Wed, 5 Nov 2025 04:42:18 +0100 Subject: [PATCH 2/2] empty commit to restart CI