From 113a3e69490f9e793433473b02ca6f50bbc1a163 Mon Sep 17 00:00:00 2001 From: disqualifier Date: Mon, 29 Jun 2026 18:07:38 -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 62833d3..d6f5584 100644 --- a/README.md +++ b/README.md @@ -11,13 +11,13 @@ and storage-agnostic. `requirements.txt`: ``` -envelope_crypto @ git+ssh://git@git.rethinkstudios.io/rethink-public/envelope_crypto.git@v0.1.3 +envelope_crypto @ git+ssh://git@git.rethinkstudios.io/rethink-public/envelope_crypto.git ``` Direct: ```bash -pip install "envelope_crypto @ git+ssh://git@git.rethinkstudios.io/rethink-public/envelope_crypto.git@v0.1.3" +pip install "envelope_crypto @ git+ssh://git@git.rethinkstudios.io/rethink-public/envelope_crypto.git" ``` Requires `cryptography` (pulled transitively). @@ -152,4 +152,4 @@ The lib never touches a database; only the caller's storage layer differs. ## 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.