Skip to content

Commit

Permalink
feat: update to latest Autofac version
Browse files Browse the repository at this point in the history
  • Loading branch information
alsami committed Jan 22, 2024
1 parent 3a83e3e commit 694755d
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 9 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# [12.0.0](https://www.nuget.org/packages/MediatR.Extensions.Autofac.DependencyInjection/12.0.0) (2024-01-22)

## Breaking changes

* Update `Autofac` to `8.0.0`. For the list of breaking-changes, take a look at the [official release](https://github.com/autofac/Autofac/releases/tag/v8.0.0)

# [11.3.0](https://www.nuget.org/packages/MediatR.Extensions.Autofac.DependencyInjection/11.3.0) (2023-11-21)

## Chores
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "8.0.100",
"version": "8.0.101",
"rollForward": "latestFeature"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Autofac.Extensions.DependencyInjection">
<Version>8.0.0</Version>
<Version>9.0.0</Version>
</PackageReference>
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson">
<Version>8.0.0</Version>
<Version>8.0.1</Version>
</PackageReference>
</ItemGroup>
<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
<PackageIcon>icon.png</PackageIcon>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>git://github.com/alsami/MediatR.Extensions.Autofac.DependencyInjection</RepositoryUrl>
<Version>11.3.0</Version>
<FileVersion>11.3.0.0</FileVersion>
<Version>12.0.0</Version>
<FileVersion>12.0.0.0</FileVersion>
<EmbedAllSources>true</EmbedAllSources>
<TreatWarningAsError>true</TreatWarningAsError>
<Nullable>enable</Nullable>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Autofac" Version="7.1.0" />
<PackageReference Include="Autofac" Version="8.0.0" />
<PackageReference Include="MediatR" Version="12.2.0" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Autofac.Extensions.DependencyInjection" Version="8.0.0" />
<PackageReference Include="Autofac.Extensions.DependencyInjection" Version="9.0.0" />
<PackageReference Include="FluentAssertions" Version="6.12.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="xunit" Version="2.6.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.4">
<PackageReference Include="xunit" Version="2.6.6" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
Expand Down

0 comments on commit 694755d

Please sign in to comment.