diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index caa8332..5575d99 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -16,7 +16,7 @@ jobs: fail-fast: false # ensures the entire test matrix is run, even if one permutation fails matrix: os: [ windows-latest, ubuntu-latest ] - version: [ net462, net6.0, net7.0, net8.0 ] + version: [ net462, net6.0, net8.0 ] exclude: - os: ubuntu-latest version: net462 diff --git a/CHANGELOG.md b/CHANGELOG.md index 05a1e10..372eff5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ ### BREAKING CHANGES +* Drops supports for .NET 7. EOL was May 24 2024 + ([#116](https://github.com/grafana/grafana-opentelemetry-dotnet/pull/116)) * Separates resource detectors and instrumentations. Removes resource detector names from `Grafana.OpenTelemetry.Instrumentation` enumeration. Adds new `Grafana.OpenTelemetry.ResourceDetectors` enumeration. diff --git a/tests/Grafana.OpenTelemetry.Tests/Grafana.OpenTelemetry.Tests.csproj b/tests/Grafana.OpenTelemetry.Tests/Grafana.OpenTelemetry.Tests.csproj index b37a175..013efe6 100644 --- a/tests/Grafana.OpenTelemetry.Tests/Grafana.OpenTelemetry.Tests.csproj +++ b/tests/Grafana.OpenTelemetry.Tests/Grafana.OpenTelemetry.Tests.csproj @@ -1,7 +1,7 @@ - net8.0;net7.0;net6.0;netstandard2.0;net462 + net8.0;net6.0;netstandard2.0;net462 disable false