diff --git a/src/Handyman.DependencyInjection/docs/changelog.md b/src/Handyman.DependencyInjection/docs/changelog.md index c85b7b1..0a8e738 100644 --- a/src/Handyman.DependencyInjection/docs/changelog.md +++ b/src/Handyman.DependencyInjection/docs/changelog.md @@ -1,9 +1,16 @@ # Handyman.DependencyInjection changelog +## 2.7.0 - 2023-11-23 + +* Add `.net8.0` TFM. +* Package upgrades + * Microsoft.SourceLink.GitHub 8.0.0 + ## 2.6.0 - 2022-09-02 * Add `IScanner.Assemblies(IEnumerable)` method. -## 2.4.2 - 2022-11-15 + +## 2.5.0 - 2022-11-15 * Added `net7.0` TFM. * Removed `netcoreapp3.1` & `net5.0` TFMs. diff --git a/src/Handyman.DependencyInjection/src/Handyman.DependencyInjection.csproj b/src/Handyman.DependencyInjection/src/Handyman.DependencyInjection.csproj index 15faeef..5049028 100644 --- a/src/Handyman.DependencyInjection/src/Handyman.DependencyInjection.csproj +++ b/src/Handyman.DependencyInjection/src/Handyman.DependencyInjection.csproj @@ -1,8 +1,8 @@  - net472;net6.0;net7.0 - 2.6.0 + net472;net6.0;net7.0;net8.0 + 2.7.0 true @@ -21,8 +21,12 @@ + + + + - + diff --git a/src/Handyman.DependencyInjection/tests/Handyman.DependencyInjection.Tests.csproj b/src/Handyman.DependencyInjection/tests/Handyman.DependencyInjection.Tests.csproj index 8200ae5..1699fb4 100644 --- a/src/Handyman.DependencyInjection/tests/Handyman.DependencyInjection.Tests.csproj +++ b/src/Handyman.DependencyInjection/tests/Handyman.DependencyInjection.Tests.csproj @@ -1,7 +1,7 @@  - net472;net6.0;net7.0 + net472;net6.0;net7.0;net8.0