Compare commits

...

2 Commits

Author SHA1 Message Date
dependabot[bot]
71f0289341 Bump FsUnit from 5.2.0 to 5.3.0 (#15)
* Bump FsUnit from 5.2.0 to 5.3.0

Bumps [FsUnit](https://github.com/fsprojects/FsUnit) from 5.2.0 to 5.3.0.
- [Release notes](https://github.com/fsprojects/FsUnit/releases)
- [Changelog](https://github.com/fsprojects/FsUnit/blob/master/RELEASE_NOTES.md)
- [Commits](https://github.com/fsprojects/FsUnit/compare/5.2.0...5.3.0)

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

Signed-off-by: dependabot[bot] <support@github.com>

* Flake

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Patrick Stevens <patrick+github@patrickstevens.co.uk>
2023-05-08 10:40:41 +01:00
dependabot[bot]
f65b765dc0 Bump fantomas from 6.0.1 to 6.0.2 (#14)
* Bump fantomas from 6.0.1 to 6.0.2

Bumps [fantomas](https://github.com/fsprojects/fantomas) from 6.0.1 to 6.0.2.
- [Release notes](https://github.com/fsprojects/fantomas/releases)
- [Changelog](https://github.com/fsprojects/fantomas/blob/main/CHANGELOG.md)
- [Commits](https://github.com/fsprojects/fantomas/compare/v6.0.1...v6.0.2)

---
updated-dependencies:
- dependency-name: fantomas
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Fix flake

* Read from config file

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Smaug123 <patrick+github@patrickstevens.co.uk>
2023-05-08 09:30:40 +00:00
4 changed files with 5 additions and 5 deletions

View File

@@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"fantomas": {
"version": "6.0.1",
"version": "6.0.2",
"commands": [
"fantomas"
]

View File

@@ -14,7 +14,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="FsUnit" Version="5.2.0" />
<PackageReference Include="FsUnit" Version="5.3.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0" />
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.4.2" />

View File

@@ -41,7 +41,7 @@
};
in {
packages = {
fantomas = dotnetTool "fantomas" "6.0.1" "sha256-TNAkurZ0NYI2Tkr99ms9MdAMLLKCQzemx5zHo/hDOTo=";
fantomas = dotnetTool "fantomas" (builtins.fromJSON (builtins.readFile ./.config/dotnet-tools.json)).tools.fantomas.version "sha256-zASGyIKyVEvtoqOYLosKHuxqJgG7l7jW6nSGvU0iMhs=";
fetchDeps = let
flags = [];
runtimeIds = ["win-x64"] ++ map (system: pkgs.dotnetCorePackages.systemToDotnetRid system) dotnet-sdk.meta.platforms;

View File

@@ -13,8 +13,8 @@
})
(fetchNuGet {
pname = "FsUnit";
version = "5.2.0";
sha256 = "0l4n453slnynp8x372618yx6gjwywfai1dyl4m5iyw87d0iam7q3";
version = "5.3.0";
sha256 = "0fqjada5fysqfhqsxj9dxc849dckfn1256ra9yafx9w7npihaffa";
})
(fetchNuGet {
pname = "Microsoft.Build.Tasks.Git";