Skip to content

Commit

Permalink
1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
StefH committed Nov 17, 2022
1 parent b25c8d3 commit 8d729f0
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Generate-ReleaseNotes.bat
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
rem https://github.com/StefH/GitHubReleaseNotes

SET version=1.1.0
SET version=1.2.0

GitHubReleaseNotes --output ReleaseNotes.md --skip-empty-releases --exclude-labels question invalid doc --version %version%

Expand Down
6 changes: 3 additions & 3 deletions PackageReleaseNotes.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# 1.1.0 (19 September 2021)
- #8 .NET 6.0 Support (fixes #7): [bug]
- #7 Broken on .NET 6.0 [bug]
# 1.2.0 (17 November 2022)
- #10 Update Blazor.WebAssembly.Authentication.Auth0.csproj to support .NET 7 [enhancement]
- #9 .NET 7.0 Support [enhancement]

The full release notes can be found here: https://github.com/StefH/Blazor.WebAssembly.Authentication.Auth0/blob/master/ReleaseNotes.md
4 changes: 4 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 1.2.0 (17 November 2022)
- [#10](https://github.com/StefH/Blazor.WebAssembly.Authentication.Auth0/pull/10) - Update Blazor.WebAssembly.Authentication.Auth0.csproj to support .NET 7 [enhancement] contributed by [robertmclaws](https://github.com/robertmclaws)
- [#9](https://github.com/StefH/Blazor.WebAssembly.Authentication.Auth0/issues/9) - .NET 7.0 Support [enhancement]

# 1.1.0 (19 September 2021)
- [#8](https://github.com/StefH/Blazor.WebAssembly.Authentication.Auth0/pull/8) - .NET 6.0 Support (fixes #7): [bug] contributed by [robertmclaws](https://github.com/robertmclaws)
- [#7](https://github.com/StefH/Blazor.WebAssembly.Authentication.Auth0/issues/7) - Broken on .NET 6.0 [bug]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>1.1.0</Version>
<Version>1.2.0</Version>
<Description>Authenticate your Blazor WebAssembly applications with Auth0</Description>
<Authors>Stef Heyenrath</Authors>
<TargetFrameworks>netstandard2.1;net5.0;net6.0</TargetFrameworks>
<TargetFrameworks>netstandard2.1;net6.0;net7.0</TargetFrameworks>
<PackageId>WebAssembly.Authentication.Auth0</PackageId>
<LangVersion>8.0</LangVersion>
<LangVersion>11</LangVersion>
<Nullable>enable</Nullable>
<PackageTags>Blazor;WebAssembly;Auth0;Authentication;JWT;Audience</PackageTags>
<PackageReleaseNotes>See ReleaseNotes.md</PackageReleaseNotes>
<PackageReleaseNotes>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../../PackageReleaseNotes.txt"))</PackageReleaseNotes>
<PackageReadmeFile>PackageReadme.md</PackageReadmeFile>
<PackageReleaseNotes>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../../PackageReleaseNotes.txt"))</PackageReleaseNotes>
<PackageReadmeFile>PackageReadme.md</PackageReadmeFile>
<PackageIcon>icon.png</PackageIcon>
<PackageProjectUrl>https://github.com/StefH/Blazor.WebAssembly.Authentication.Auth0</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
Expand All @@ -26,7 +26,7 @@

<ItemGroup>
<None Include="../../resources/icon.png" Pack="true" PackagePath="" />
<None Include="../../PackageReadme.md" Pack="true" PackagePath=""/>
<None Include="../../PackageReadme.md" Pack="true" PackagePath=""/>
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 8d729f0

Please sign in to comment.