Skip to content

Commit

Permalink
Bump NUnit from 4.0.1 to 4.1.0 (#7)
Browse files Browse the repository at this point in the history
* Bump NUnit from 4.0.1 to 4.1.0

Bumps [NUnit](https://github.com/nunit/nunit) from 4.0.1 to 4.1.0.
- [Release notes](https://github.com/nunit/nunit/releases)
- [Changelog](https://github.com/nunit/nunit/blob/master/CHANGES.md)
- [Commits](nunit/nunit@v4.0.1...4.1.0)

---
updated-dependencies:
- dependency-name: NUnit
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Mar 4, 2024
1 parent 32a99f8 commit e22dde4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 13 deletions.
3 changes: 1 addition & 2 deletions PrattParser.Test/PrattParser.Test.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@
<ItemGroup>
<PackageReference Include="FsUnit" Version="6.0.0"/>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0"/>
<PackageReference Include="NUnit" Version="4.0.1"/>
<PackageReference Include="NUnit" Version="4.1.0"/>
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0"/>
<PackageReference Include="coverlet.collector" Version="6.0.0"/>
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
pkgs.stdenvNoCC.mkDerivation rec {
name = toolName;
version = toolVersion;
nativeBuildInputs = [pkgs.makeWrapper];
nativeBuildInputs = [pkgs.makeWrapper pkgs.dotnetCorePackages.runtime_8_0];
src = pkgs.fetchNuGet {
pname = name;
version = version;
Expand All @@ -38,7 +38,7 @@
runHook preInstall
mkdir -p "$out/lib"
cp -r ./bin/* "$out/lib"
makeWrapper "${dotnet-runtime}/bin/dotnet" "$out/bin/${name}" --add-flags "$out/lib/${dll}.dll"
makeWrapper "${dotnet-runtime}/bin/dotnet" "$out/bin/${name}" --add-flags "$out/lib/${dll}.dll" --set PATH ${pkgs.lib.makeBinPath [pkgs.dotnet-sdk_8]}
runHook postInstall
'';
};
Expand Down
13 changes: 4 additions & 9 deletions nix/deps.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
})
(fetchNuGet {
pname = "G-Research.FSharp.Analyzers";
version = "0.8.0";
sha256 = "sha256-EeXo3InJ1AmCv9y5a23q0/uSLkBbNefzsTy7VXgTm+U=";
version = "0.9.3";
sha256 = "sha256-5RFdhBWyf13eQNUuh60+zR1/f19g78yvTP46w3vT1L0=";
})
(fetchNuGet {
pname = "fantomas";
Expand All @@ -21,11 +21,6 @@
version = "4.0.25";
sha256 = "0zjq8an9cr0l7wxdmm9n9s3iyq5m0zl4x0h0wmy5cz7am8y15qc4";
})
(fetchNuGet {
pname = "coverlet.collector";
version = "6.0.0";
sha256 = "12j34vrkmph8lspbafnqmfnj2qvysz1jcrks2khw798s6dwv0j90";
})
(fetchNuGet {
pname = "FSharp.Core";
version = "8.0.101";
Expand Down Expand Up @@ -168,8 +163,8 @@
})
(fetchNuGet {
pname = "NUnit";
version = "4.0.1";
sha256 = "0jgiq3dbwli5r70j0bw7021d69r7bhr58s8kphlpjmf7k47l5pcd";
version = "4.1.0";
sha256 = "0fj6xwgqaxq3mrai86bklclfmjkzf038mrslwfqf4ignaz9f7g5j";
})
(fetchNuGet {
pname = "NUnit3TestAdapter";
Expand Down

0 comments on commit e22dde4

Please sign in to comment.