Skip to content

Commit

Permalink
feat: v6 with support for FluentValidation 10
Browse files Browse the repository at this point in the history
  • Loading branch information
benmccallum committed Apr 9, 2021
1 parent 76c39cc commit 10269dc
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,16 +120,17 @@ which can bring breaking changes from time to time and require a major bump our
for FluentValidation.
Compatibility is listed below.

We strive to match HotChocolate's supported target frameworks, though this might not always be possible.
We strive to match HotChocolate's supported .NET target frameworks, though this might not always be possible.

| HotChocolate | FluentValidation | FairyBread | FairyBread docs |
| ------------ | ---------------- | ---------- | --------------- |
| v10 | v8 | v1 | [/v1/main](https://github.com/benmccallum/fairybread/tree/v1/main) branch |
| v11 | v8 | v2 | [/v2/main](https://github.com/benmccallum/fairybread/tree/v2/main) branch |
| v11 | v9 | v3 | [/v3/main](https://github.com/benmccallum/fairybread/tree/v3/main) branch |
| v11 | v9 | v4 | [/v4/main](https://github.com/benmccallum/fairybread/tree/v3/main) branch |
| v11.0.9* | v9 | v4.1.1 | [/v4/main](https://github.com/benmccallum/fairybread/tree/v3/main) branch |
| v11.0.9 | v9 | v5 | right here |
| v11 | v9 | v4 | [/v4/main](https://github.com/benmccallum/fairybread/tree/v4/main) branch |
| v11.0.9* | v9 | v4.1.1 | [/v4/main](https://github.com/benmccallum/fairybread/tree/v4/main) branch |
| v11.0.9 | v9 | v5 | [/v5/main](https://github.com/benmccallum/fairybread/tree/v5/main) branch |
| v11.0.9 | v10 | v6 | right here |

* Unexpected binary incompatibility / breaking change in HotChocolate

Expand Down
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<PackageIconUrl>https://github.com/benmccallum/fairybread/raw/master/logo-400x400.png</PackageIconUrl>
<PackageLicenseUrl>https://github.com/benmccallum/fairybread/blob/master/LICENSE</PackageLicenseUrl>

<Version>5.1.0</Version>
<Version>6.0.0</Version>

<HotChocolateVersion>11.0.9</HotChocolateVersion>

Expand Down
2 changes: 1 addition & 1 deletion src/FairyBread.Tests/FairyBread.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="FluentValidation.DependencyInjectionExtensions" Version="8.6.2" />
<PackageReference Include="FluentValidation.DependencyInjectionExtensions" Version="10.0.0" />
<PackageReference Include="HotChocolate.Execution" Version="$(HotChocolateVersion)" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.0" />
<PackageReference Include="Moq" Version="4.15.1" />
Expand Down
2 changes: 1 addition & 1 deletion src/FairyBread/FairyBread.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="FluentValidation" Version="9.0.0" />
<PackageReference Include="FluentValidation" Version="10.0.0" />
<PackageReference Include="HotChocolate.Execution" Version="$(HotChocolateVersion)" />
</ItemGroup>

Expand Down

0 comments on commit 10269dc

Please sign in to comment.