Skip to content

Commit

Permalink
Bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim-Maes committed Jan 3, 2024
1 parent 2f22c62 commit 697ee8c
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 14 deletions.
4 changes: 3 additions & 1 deletion .template.config/template.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@
"target": "./",
"exclude": [
".template.config/**/*",
"*.nuspec"
"*.nuspec",
"readme.md",
"template.json"
],
"rename": {
"README-template.md": "README.md"
Expand Down
2 changes: 1 addition & 1 deletion GraphR.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package >
<metadata>
<id>GraphR</id>
<version>0.1.9</version>
<version>0.2</version>
<authors>Tim Maes</authors>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<license type="expression">MIT</license>
Expand Down
4 changes: 2 additions & 2 deletions src/GraphR.API/GraphR.API.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
Expand All @@ -8,7 +8,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="HotChocolate.AspNetCore" Version="13.7.0" />
<PackageReference Include="HotChocolate.AspNetCore" Version="14.0.0-p.22" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions src/GraphR.Application/GraphR.Application.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
Expand All @@ -12,7 +12,7 @@

</ItemGroup>
<ItemGroup>
<PackageReference Include="HotChocolate.Abstractions" Version="13.7.0" />
<PackageReference Include="HotChocolate.Abstractions" Version="14.0.0-p.22" />
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions src/GraphR.Core/GraphR.Core.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
Expand All @@ -8,7 +8,7 @@

<ItemGroup>
<PackageReference Include="Dapper.FluentMap" Version="2.0.0" />
<PackageReference Include="FluentValidation" Version="11.8.1" />
<PackageReference Include="FluentValidation" Version="11.9.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0" />
</ItemGroup>

Expand Down
10 changes: 5 additions & 5 deletions src/GraphR.Infrastructure/GraphR.Infrastructure.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
Expand All @@ -16,11 +16,11 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Bindicate" Version="1.2.0" />
<PackageReference Include="Dapper" Version="2.1.21" />
<PackageReference Include="Bindicate" Version="1.5.1" />
<PackageReference Include="Dapper" Version="2.1.28" />
<PackageReference Include="Dapper.FluentMap" Version="2.0.0" />
<PackageReference Include="dbup" Version="5.0.8" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.1.2" />
<PackageReference Include="dbup" Version="5.0.37" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.2.0-preview4.23342.2" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Options" Version="8.0.0" />
Expand Down
2 changes: 1 addition & 1 deletion src/GraphR.Infrastructure/ServiceCollectionExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using System.Reflection;
using Bindicate.Configuration;
using Bindicate;
using GrapR.Core.Dapper;
using GrapR.Infrastructure.Database.Seed;
using Microsoft.Extensions.Configuration;
Expand Down

0 comments on commit 697ee8c

Please sign in to comment.