From 71c7fe09cdf6ce47ae5909bb8d947454e4270754 Mon Sep 17 00:00:00 2001 From: eric Date: Sun, 15 Mar 2026 17:15:23 +0100 Subject: [PATCH] chore(release): v3.4.0 --- README.md | 4 ++-- VERSION | 2 +- template/flake.nix | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8ebd370..c9f8728 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.3.0#default' --refresh +nix flake new myapp -t 'git+https://git.dgren.dev/eric/nix-flake-lib?ref=refs/tags/v3.4.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=refs/ta Add this flake input: ```nix -inputs.repo-lib.url = "git+https://git.dgren.dev/eric/nix-flake-lib?ref=refs/tags/v3.3.0"; +inputs.repo-lib.url = "git+https://git.dgren.dev/eric/nix-flake-lib?ref=refs/tags/v3.4.0"; inputs.repo-lib.inputs.nixpkgs.follows = "nixpkgs"; ``` diff --git a/VERSION b/VERSION index 985c366..bc68e2f 100644 --- a/VERSION +++ b/VERSION @@ -1,4 +1,4 @@ -3.3.0 +3.4.0 stable 0 diff --git a/template/flake.nix b/template/flake.nix index c2def80..45fef5f 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=refs/tags/v3.3.0"; + repo-lib.url = "git+https://git.dgren.dev/eric/nix-flake-lib?ref=refs/tags/v3.4.0"; repo-lib.inputs.nixpkgs.follows = "nixpkgs"; };