diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2f05a47..63d1ad5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,7 +31,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: - dotnet-version: 3.1.301 + dotnet-version: 5.0.100 - name: Restore run: dotnet restore - name: Build @@ -71,7 +71,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: - dotnet-version: 3.1.301 + dotnet-version: 5.0.100 - name: Create Release NuGet package run: | arrTag=(${GITHUB_REF//\// }) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 46fcfe7..b7aa949 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,6 +1,14 @@ Release Notes ============= +## 1.3.0 + +Upgraded to `net5.0` target framework. + +`Giraffe.ViewEngine` version `1.2.0` and version `1.3.0` are identical in functionality. The only difference is that `1.2.0` targets `netcoreapp3.1` and `1.3.0` targets `net5.0`. If you cannot upgrade your .NET Core project to `net5.0` yet then stay on version `1.2.0`. + +New features and bug fixes will continue off the `1.3.0` version and therefore only target `net5.0` going forward. The upgrade path from `netcoreapp3.1` to `net5.0` is so minimal that it is a reasonable expectation and not worth the effort to support both target frameworks. + ## 1.2.0 - Added missing `iframe` element ([#9](https://github.com/giraffe-fsharp/Giraffe.ViewEngine/issues/9)) diff --git a/samples/Giraffe.ViewEngine.Sample/Giraffe.ViewEngine.Sample.fsproj b/samples/Giraffe.ViewEngine.Sample/Giraffe.ViewEngine.Sample.fsproj index 858dadd..d9067bd 100644 --- a/samples/Giraffe.ViewEngine.Sample/Giraffe.ViewEngine.Sample.fsproj +++ b/samples/Giraffe.ViewEngine.Sample/Giraffe.ViewEngine.Sample.fsproj @@ -2,7 +2,7 @@ Exe - netcoreapp3.1 + net5.0 GithubExample diff --git a/src/Giraffe.ViewEngine/Giraffe.ViewEngine.fsproj b/src/Giraffe.ViewEngine/Giraffe.ViewEngine.fsproj index 7fe69a6..2e8e664 100644 --- a/src/Giraffe.ViewEngine/Giraffe.ViewEngine.fsproj +++ b/src/Giraffe.ViewEngine/Giraffe.ViewEngine.fsproj @@ -8,7 +8,7 @@ en-GB - netcoreapp3.1 + net5.0 portable Library true @@ -41,7 +41,7 @@ $(PackageIconUrl) - + diff --git a/tests/Giraffe.ViewEngine.Benchmarks/Giraffe.ViewEngine.Benchmarks.fsproj b/tests/Giraffe.ViewEngine.Benchmarks/Giraffe.ViewEngine.Benchmarks.fsproj index bdf44fd..4805755 100644 --- a/tests/Giraffe.ViewEngine.Benchmarks/Giraffe.ViewEngine.Benchmarks.fsproj +++ b/tests/Giraffe.ViewEngine.Benchmarks/Giraffe.ViewEngine.Benchmarks.fsproj @@ -1,6 +1,6 @@  - netcoreapp3.1 + net5.0 diff --git a/tests/Giraffe.ViewEngine.Tests/Giraffe.ViewEngine.Tests.fsproj b/tests/Giraffe.ViewEngine.Tests/Giraffe.ViewEngine.Tests.fsproj index 153e20c..324bb04 100644 --- a/tests/Giraffe.ViewEngine.Tests/Giraffe.ViewEngine.Tests.fsproj +++ b/tests/Giraffe.ViewEngine.Tests/Giraffe.ViewEngine.Tests.fsproj @@ -1,6 +1,6 @@  - netcoreapp3.1 + net5.0 @@ -12,14 +12,14 @@ - + - - - - + + + +