Skip to content

Commit

Permalink
README: document latest tag (#122)
Browse files Browse the repository at this point in the history
Document the use of `latest` tag to automatically track the most recent release.
  • Loading branch information
gmodena authored Dec 13, 2024
1 parent 553a27c commit 8bdc254
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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";
...
```

Expand Down

0 comments on commit 8bdc254

Please sign in to comment.