zaphyra's git: haumea

fork of https://github.com/nix-community/haumea

commit 31382d9d956e8bb4d57535c4c373a78b67beeaf4
parent 9b0e0a57aa5e1b924f5388424b2f04fff007cd77
Author: figsoda <figsoda@pm.me>
Date: Sat, 1 Apr 2023 11:00:21 -0400

docs: versioning
2 files changed, 9 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md
@@ -10,6 +10,14 @@ with support for file hierarchy and visibility.
 nix flake init -t github:nix-community/haumea
 ```
 
+## Versioning
+
+Haumea follows [semantic versioning](https://semver.org).
+Breaking changes can happen in main branch at any time,
+so it is recommended to pin haumea to a specific tag.
+A list of available versions can be found on the
+[releases](https://github.com/nix-community/haumea/releases) page.
+
 ## Usage
 
 ### [`load`](src/load.nix)
diff --git a/templates/default/flake.nix b/templates/default/flake.nix
@@ -1,7 +1,7 @@
 {
   inputs = {
     haumea = {
-      url = "github:nix-community/haumea";
+      url = "github:nix-community/haumea/v0.1.0";
       inputs.nixpkgs.follows = "nixpkgs";
     };
     nixpkgs.url = "github:nix-community/nixpkgs.lib";