From 5d735de13814ab9078ebb8323b1b940fd100371e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Sun, 20 Nov 2022 23:36:42 +0100 Subject: [PATCH] bump version 2.2.0 --- README.md | 4 ++-- direnvrc | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index bf81184e..aca1c7eb 100644 --- a/README.md +++ b/README.md @@ -89,8 +89,8 @@ keep-outputs = true Put the following lines in your `.envrc`: ```bash -if ! has nix_direnv_version || ! nix_direnv_version 2.1.1; then - source_url "https://raw.githubusercontent.com/nix-community/nix-direnv/2.1.1/direnvrc" "sha256-b6qJ4r34rbE23yWjMqbmu3ia2z4b2wIlZUksBke/ol0=" +if ! has nix_direnv_version || ! nix_direnv_version 2.2.0; then + source_url "https://raw.githubusercontent.com/nix-community/nix-direnv/2.2.0/direnvrc" "sha256-b6qJ4r34rbE23yWjMqbmu3ia2z4b2wIlZUksBke/ol0=" fi ``` diff --git a/direnvrc b/direnvrc index 573f78b0..6247940c 100644 --- a/direnvrc +++ b/direnvrc @@ -43,7 +43,7 @@ _nix_direnv_preflight () { # # Checks that the nix-direnv version is at least as old as . nix_direnv_version() { - declare major='2' minor='1' patch='0' # UPDATE(nix-direnv version) + declare major='2' minor='2' patch='0' # UPDATE(nix-direnv version) [[ $1 =~ ^([^+-.]*)(\.?)([^+-.]*)(\.?)([^+-]*)(-?)([^+]*)(\+?)(.*)$ ]] declare -a ver; ver=("${BASH_REMATCH[@]:1}")