From ac8ad31531ce4ea29eb358bfc2c94dc7cf759682 Mon Sep 17 00:00:00 2001 From: Ernane Date: Fri, 3 Jul 2026 12:13:54 -0300 Subject: [PATCH] Fix broken NEWS link in Ruby 4.0.0 release post The URL https://docs.ruby-lang.org/en/v4.0.0/NEWS_md.html returns 404. The correct path on docs.ruby-lang.org omits the "v" prefix and patch version, so the link now points to https://docs.ruby-lang.org/en/4.0/NEWS_md.html. Fixes #3764 --- en/news/_posts/2025-12-25-ruby-4-0-0-released.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/news/_posts/2025-12-25-ruby-4-0-0-released.md b/en/news/_posts/2025-12-25-ruby-4-0-0-released.md index ca95a143bb..5bdf3141ed 100644 --- a/en/news/_posts/2025-12-25-ruby-4-0-0-released.md +++ b/en/news/_posts/2025-12-25-ruby-4-0-0-released.md @@ -624,7 +624,7 @@ A lot of work has gone into making Ractors more stable, performant, and usable. * `--rjit` is removed. We will move the implementation of the third-party JIT API to the [ruby/rjit](https://github.com/ruby/rjit) repository. -See [NEWS](https://docs.ruby-lang.org/en/{{ release.tag }}/NEWS_md.html) +See [NEWS](https://docs.ruby-lang.org/en/4.0/NEWS_md.html) or [commit logs](https://github.com/ruby/ruby/compare/v3_4_0...{{ release.tag }}) for more details.