diff --git a/README.md b/README.md index c90cac9..a9b5a15 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ ## Use the template ```bash -nix flake new myapp -t 'git+https://git.dgren.dev/eric/nix-flake-lib?ref=v2.1.0#default' --refresh +nix flake new myapp -t 'git+https://git.dgren.dev/eric/nix-flake-lib?ref=v3.0.0#default' --refresh ``` ## Use the library @@ -23,7 +23,7 @@ nix flake new myapp -t 'git+https://git.dgren.dev/eric/nix-flake-lib?ref=v2.1.0# Add this flake input: ```nix -inputs.repo-lib.url = "git+https://git.dgren.dev/eric/nix-flake-lib?ref=v2.1.0"; +inputs.repo-lib.url = "git+https://git.dgren.dev/eric/nix-flake-lib?ref=v3.0.0"; inputs.repo-lib.inputs.nixpkgs.follows = "nixpkgs"; ``` diff --git a/VERSION b/VERSION index a76fec0..4bf1cf5 100644 --- a/VERSION +++ b/VERSION @@ -1,3 +1,3 @@ -2.1.0 +3.0.0 stable 0 diff --git a/template/flake.nix b/template/flake.nix index d43dd55..097271a 100644 --- a/template/flake.nix +++ b/template/flake.nix @@ -4,7 +4,7 @@ inputs = { nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; - repo-lib.url = "git+https://git.dgren.dev/eric/nix-flake-lib?ref=v2.1.0"; + repo-lib.url = "git+https://git.dgren.dev/eric/nix-flake-lib?ref=v3.0.0"; repo-lib.inputs.nixpkgs.follows = "nixpkgs"; };