bump version 2.1.0

This commit is contained in:
Bryan Bennett 2022-05-01 09:48:47 -04:00
parent 2b9b1de447
commit 8a731ae0ab
No known key found for this signature in database
GPG key ID: EF90E3E98B8F5C0B
2 changed files with 3 additions and 3 deletions

View file

@ -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
```

View file

@ -39,7 +39,7 @@ _nix_direnv_preflight () {
#
# Checks that the nix-direnv version is at least as old as <version_at_least>.
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}")