Merge pull request #584 from nix-community/release-3.1.0

Release 3.1.0
This commit is contained in:
Jörg Thalheim 2025-05-28 22:15:53 +00:00 committed by GitHub
commit 1f3349f604
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 6 additions and 6 deletions

View file

@ -81,8 +81,8 @@ for integration with shells other than Bash. Be sure to also allow
Put the following lines in your `.envrc`: Put the following lines in your `.envrc`:
```bash ```bash
if ! has nix_direnv_version || ! nix_direnv_version 3.0.7; then if ! has nix_direnv_version || ! nix_direnv_version 3.1.0; then
source_url "https://raw.githubusercontent.com/nix-community/nix-direnv/3.0.7/direnvrc" "sha256-bn8WANE5a91RusFmRI7kS751ApelG02nMcwRekC/qzc=" source_url "https://raw.githubusercontent.com/nix-community/nix-direnv/3.1.0/direnvrc" "sha256-bn8WANE5a91RusFmRI7kS751ApelG02nMcwRekC/qzc="
fi fi
``` ```

View file

@ -10,7 +10,7 @@
# https://github.com/abathur/resholve/issues/107 # https://github.com/abathur/resholve/issues/107
resholve.mkDerivation rec { resholve.mkDerivation rec {
pname = "nix-direnv"; pname = "nix-direnv";
version = "3.0.7"; version = "3.1.0";
src = builtins.path { src = builtins.path {
path = ./.; path = ./.;

View file

@ -1,7 +1,7 @@
# -*- mode: sh -*- # -*- mode: sh -*-
# shellcheck shell=bash # shellcheck shell=bash
NIX_DIRENV_VERSION=3.0.7 NIX_DIRENV_VERSION=3.1.0
# min required versions # min required versions
BASH_MIN_VERSION=4.4 BASH_MIN_VERSION=4.4

View file

@ -1,5 +1,5 @@
# shellcheck shell=bash # shellcheck shell=bash
if ! has nix_direnv_version || ! nix_direnv_version 3.0.7; then if ! has nix_direnv_version || ! nix_direnv_version 3.1.0; then
source_url "https://raw.githubusercontent.com/nix-community/nix-direnv/3.0.7/direnvrc" "sha256-bn8WANE5a91RusFmRI7kS751ApelG02nMcwRekC/qzc=" source_url "https://raw.githubusercontent.com/nix-community/nix-direnv/3.1.0/direnvrc" "sha256-bn8WANE5a91RusFmRI7kS751ApelG02nMcwRekC/qzc="
fi fi
use flake use flake