From 73243ebfab3ca8b67401eaa09f9cc02ac0024ee6 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Tue, 14 Apr 2026 12:45:36 +0300 Subject: [PATCH] all: builder error: cannot import module "goroutines" (not found) (fixes #26819) --- vlib/.vdocignore | 2 ++ vlib/goroutines/README.md | 3 +++ 2 files changed, 5 insertions(+) diff --git a/vlib/.vdocignore b/vlib/.vdocignore index 35fa35bdf..555d31b71 100644 --- a/vlib/.vdocignore +++ b/vlib/.vdocignore @@ -3,6 +3,8 @@ builtin/wasm builtin/linux_bare builtin/wasm_bare os/bare +# Experimental and not part of the 0.5.1 release. +goroutines v/slow_tests/ v/preludes_js/ v/preludes diff --git a/vlib/goroutines/README.md b/vlib/goroutines/README.md index 0fb5cbc6b..eaef73aab 100644 --- a/vlib/goroutines/README.md +++ b/vlib/goroutines/README.md @@ -1,5 +1,8 @@ # goroutines +> `goroutines` is experimental. +> It landed after `0.5.1`, so `import goroutines` is not available in that release. + Go-style goroutine runtime for V, implementing the GMP (Goroutine-Machine-Processor) scheduling model translated from the Go runtime (`src/runtime/proc.go`, `runtime2.go`, -- 2.39.5