From 8bdc2540da516006d07b04019eb57ae0781a04b3 Mon Sep 17 00:00:00 2001 From: Gabriele Modena Date: Fri, 13 Dec 2024 23:20:15 +0100 Subject: [PATCH] README: document latest tag (#122) Document the use of `latest` tag to automatically track the most recent release. --- README.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0ae8742..50e4ca9 100644 --- a/README.md +++ b/README.md @@ -27,10 +27,17 @@ on [flakehub](https://flakehub.com/flake/gmodena/nix-flatpak). ### Manual installation Releases are tagged with [semantic versioning](https://semver.org/). Versions below `1.0.0` are considered early, development, releases. -Users can track a version by passing its tag as `ref` +Users can track a version by passing its release tag as `ref` ```nix ... -nix-flatpak.url = "github:gmodena/nix-flatpak/?ref=v0.5.1"; +nix-flatpak.url = "github:gmodena/nix-flatpak/?ref=v0.5.2"; +... +``` + +The `latest` tag will always point to the most recent release. +```nix +... +nix-flatpak.url = "github:gmodena/nix-flatpak/?ref=latest"; ... ```