From 22e91d2b2d147e867bcbd81ae2f3d4301839adb9 Mon Sep 17 00:00:00 2001 From: disqualifier Date: Mon, 29 Jun 2026 18:07:15 -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 8ccd826..0eca227 100644 --- a/README.md +++ b/README.md @@ -12,13 +12,13 @@ you `delete` or `clear` them. `requirements.txt`: ``` -aiokv @ git+ssh://git@git.rethinkstudios.io/rethink-public/aiokv.git@v0.1.1 +aiokv @ git+ssh://git@git.rethinkstudios.io/rethink-public/aiokv.git ``` Direct: ```bash -pip install "aiokv @ git+ssh://git@git.rethinkstudios.io/rethink-public/aiokv.git@v0.1.1" +pip install "aiokv @ git+ssh://git@git.rethinkstudios.io/rethink-public/aiokv.git" ``` Requires `aiofiles` (pulled transitively). @@ -85,4 +85,4 @@ are consistent and no update is lost. All blocking filesystem calls run via ## 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.