diff --git a/README.md b/README.md index 05c3b90..c18ac68 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=refs/tags/v3.4.0#default' --refresh +nix flake new myapp -t 'git+https://git.dgren.dev/eric/nix-flake-lib?ref=refs/tags/v3.5.0#default' --refresh ``` The generated repo includes: @@ -32,7 +32,7 @@ The generated repo includes: Add this flake input: ```nix -inputs.repo-lib.url = "git+https://git.dgren.dev/eric/nix-flake-lib?ref=refs/tags/v3.4.0"; +inputs.repo-lib.url = "git+https://git.dgren.dev/eric/nix-flake-lib?ref=refs/tags/v3.5.0"; inputs.repo-lib.inputs.nixpkgs.follows = "nixpkgs"; ``` diff --git a/VERSION b/VERSION index bc68e2f..ce57053 100644 --- a/VERSION +++ b/VERSION @@ -1,4 +1,4 @@ -3.4.0 +3.5.0 stable 0 diff --git a/template/flake.nix b/template/flake.nix index 74287f0..2627980 100644 --- a/template/flake.nix +++ b/template/flake.nix @@ -3,7 +3,7 @@ inputs = { nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; - repo-lib.url = "git+https://git.dgren.dev/eric/nix-flake-lib?ref=refs/tags/v3.4.0"; + repo-lib.url = "git+https://git.dgren.dev/eric/nix-flake-lib?ref=refs/tags/v3.5.0"; repo-lib.inputs.nixpkgs.follows = "nixpkgs"; };