From 849200985ccb59dec5726e081dcaf60b4c345a00 Mon Sep 17 00:00:00 2001 From: disqualifier Date: Mon, 29 Jun 2026 18:07:19 -0400 Subject: [PATCH] docs: show unpinned install line; note tag-pinning for reproducibility Signed-off-by: disqualifier --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 30cdd88..153e063 100644 --- a/README.md +++ b/README.md @@ -11,13 +11,13 @@ and swap the HTTP client while inheriting everything else. `requirements.txt`: ``` -aioweb @ git+ssh://git@git.rethinkstudios.io/rethink-public/aioweb.git@v0.1.4 +aioweb @ git+ssh://git@git.rethinkstudios.io/rethink-public/aioweb.git ``` Direct: ```bash -pip install "aioweb @ git+ssh://git@git.rethinkstudios.io/rethink-public/aioweb.git@v0.1.4" +pip install "aioweb @ git+ssh://git@git.rethinkstudios.io/rethink-public/aioweb.git" ``` Requires `aiohttp` and `yarl` (pulled transitively). @@ -147,4 +147,4 @@ Two changes can't be shimmed without re-introducing the bugs they fix: ## Versioning -Tagged `vX.Y.Z`. Pin the tag in `requirements.txt`. +Releases are tagged `vX.Y.Z`. The install line above is unpinned and tracks the latest on the default branch; append `@vX.Y.Z` to pin a specific release for reproducible installs.