From 8a731ae0abedf0ebbb360e225f81e543bc16ca24 Mon Sep 17 00:00:00 2001 From: Bryan Bennett Date: Sun, 1 May 2022 09:48:47 -0400 Subject: [PATCH] bump version 2.1.0 --- README.md | 4 ++-- direnvrc | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b01387d..11fc415 100644 --- a/README.md +++ b/README.md @@ -88,8 +88,8 @@ keep-outputs = true Put the following lines in your `.envrc`: ```bash -if ! has nix_direnv_version || ! nix_direnv_version 2.0.1; then - source_url "https://raw.githubusercontent.com/nix-community/nix-direnv/2.0.1/direnvrc" "sha256-5tSiHl8q9TnqoJ7Wizgal7sOUcKxiBR+7YSSqOmt7hg=" +if ! has nix_direnv_version || ! nix_direnv_version 2.1.0; then + source_url "https://raw.githubusercontent.com/nix-community/nix-direnv/2.1.0/direnvrc" "sha256-5tSiHl8q9TnqoJ7Wizgal7sOUcKxiBR+7YSSqOmt7hg=" fi ``` diff --git a/direnvrc b/direnvrc index 76cbf00..3e8ccae 100644 --- a/direnvrc +++ b/direnvrc @@ -39,7 +39,7 @@ _nix_direnv_preflight () { # # Checks that the nix-direnv version is at least as old as . nix_direnv_version() { - declare major='2' minor='0' patch='1' # UPDATE(nix-direnv version) + declare major='2' minor='1' patch='0' # UPDATE(nix-direnv version) [[ $1 =~ ^([^+-.]*)(\.?)([^+-.]*)(\.?)([^+-]*)(-?)([^+]*)(\+?)(.*)$ ]] declare -a ver; ver=("${BASH_REMATCH[@]:1}")