From 7b98214c68ae57f80e1e105cd84d8a6370521fda Mon Sep 17 00:00:00 2001 From: disqualifier Date: Mon, 29 Jun 2026 18:13:50 -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 5afc460..7228d27 100644 --- a/README.md +++ b/README.md @@ -10,17 +10,19 @@ live from `bot.settings` so it can change at runtime via a command. `requirements.txt`: ``` -dpy_logger @ git+ssh://git@git.rethinkstudios.io/rethink-public/dpy_logger.git +dpy_logger @ git+ssh://git@git.rethinkstudios.io/rethink-public/dpy_logger.git@v0.1.2 ``` Direct: ```bash -pip install "dpy_logger @ git+ssh://git@git.rethinkstudios.io/rethink-public/dpy_logger.git" +pip install "dpy_logger @ git+ssh://git@git.rethinkstudios.io/rethink-public/dpy_logger.git@v0.1.2" ``` Requires `discord.py` (pulled transitively). +Drop the `@v0.1.2` suffix from the line above to install the latest unpinned. + ## Usage ```python @@ -139,4 +141,4 @@ class FeedLogger(DPYLogger): ## 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. +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.