From 8555af1d5b2dc69cfb4275d9ce737a556e27485b Mon Sep 17 00:00:00 2001 From: "Mani Saint-Victor, MD" Date: Mon, 11 May 2026 02:27:07 -0400 Subject: [PATCH] docs: loosen quickstart version pin to 0.4.x range Quickstart was pinned to elume==0.4.0. Users following the doc would miss patch releases (including security fixes) within the 0.4.x line. Loosen to >=0.4.0,<0.5 so the next 0.4.x release picks up automatically while preventing accidental jump to a 0.5.x that may change the public API. --- docs/quickstart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/quickstart.md b/docs/quickstart.md index 2fe4d89..abf689c 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -22,7 +22,7 @@ Create a small project folder and install Elume from PyPI: ```bash python -m venv .venv source .venv/bin/activate -pip install elume==0.4.0 +pip install "elume>=0.4.0,<0.5" ``` ## 2. Create The Example