From 816c71a3f5a419bd9bee568ec69b4db7e585963e Mon Sep 17 00:00:00 2001 From: disqualifier Date: Mon, 29 Jun 2026 18:13:56 -0400 Subject: [PATCH] docs: pin install line to release, note unpinned-latest option Signed-off-by: disqualifier --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b871f5b..96053cb 100644 --- a/README.md +++ b/README.md @@ -8,17 +8,19 @@ helpers for the common paths, with a raw escape hatch for everything else. `requirements.txt`: ``` -mongo @ git+ssh://git@git.rethinkstudios.io/rethink-public/mongo.git +mongo @ git+ssh://git@git.rethinkstudios.io/rethink-public/mongo.git@v0.1.2 ``` Direct: ```bash -pip install "mongo @ git+ssh://git@git.rethinkstudios.io/rethink-public/mongo.git" +pip install "mongo @ git+ssh://git@git.rethinkstudios.io/rethink-public/mongo.git@v0.1.2" ``` Requires `motor` and `pymongo` (pulled transitively). +Drop the `@v0.1.2` suffix from the line above to install the latest unpinned. + ## Usage **Object (preferred)** — one client per process: @@ -71,4 +73,4 @@ are included. ## Versioning -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. \ No newline at end of file +Releases are tagged `vX.Y.Z`. The install line above pins a release; drop the `@vX.Y.Z` suffix to install the latest unpinned. Pin deliberately for reproducible installs. \ No newline at end of file