Skip to content

Commit 5b7c303

Browse files
committed
[v3.2.1] Lib.Net.Http.WebPush
1 parent b7e6e8d commit 5b7c303

File tree

5 files changed

+27
-5
lines changed

5 files changed

+27
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
## Lib.Net.Http.WebPush 3.1.0
1+
## Lib.Net.Http.WebPush 3.2.1
2+
### Bug Fixes
3+
- Fix for client keys casing and validation.
4+
5+
## Lib.Net.Http.WebPush 3.2.0
26
### Additions and Changes
37
- Dropped support for .NET Core 2.1
48
- Added support for .NET 6.0

Lib.Net.Http.WebPush.sln

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio Version 16
4-
VisualStudioVersion = 16.0.29728.190
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.2.32505.173
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Lib.Net.Http.WebPush", "src\Lib.Net.Http.WebPush\Lib.Net.Http.WebPush.csproj", "{79FDCAAA-6129-4FBB-B94E-7F7BE9A07C7C}"
77
EndProject
@@ -21,7 +21,13 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Lib.AspNetCore.WebPush", "s
2121
EndProject
2222
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{AFD9AC51-E923-49DF-B000-721816ABDE37}"
2323
EndProject
24-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Test.Lib.Net.Http.WebPush", "test\Test.Lib.Net.Http.WebPush\Test.Lib.Net.Http.WebPush.csproj", "{E0746BE4-61F3-4366-8C7E-99C2350A0DD3}"
24+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Test.Lib.Net.Http.WebPush", "test\Test.Lib.Net.Http.WebPush\Test.Lib.Net.Http.WebPush.csproj", "{E0746BE4-61F3-4366-8C7E-99C2350A0DD3}"
25+
EndProject
26+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{7992C65C-E6C3-4B34-AB9B-EF24915BB907}"
27+
ProjectSection(SolutionItems) = preProject
28+
CHANGELOG.md = CHANGELOG.md
29+
README.md = README.md
30+
EndProjectSection
2531
EndProject
2632
Global
2733
GlobalSection(SolutionConfigurationPlatforms) = preSolution

src/Lib.AspNetCore.WebPush/Lib.AspNetCore.WebPush.csproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
<PackageTags>aspnetcore;webpush</PackageTags>
1313
<PackageProjectUrl>https://github.com/tpeczek/Lib.Net.Http.WebPush</PackageProjectUrl>
1414
<PackageLicenseExpression>MIT</PackageLicenseExpression>
15+
<PackageReadmeFile>README.md</PackageReadmeFile>
1516
<RepositoryType>git</RepositoryType>
1617
<RepositoryUrl>git://github.com/tpeczek/Lib.Net.Http.WebPush</RepositoryUrl>
1718
<GenerateAssemblyTitleAttribute>true</GenerateAssemblyTitleAttribute>
@@ -24,6 +25,9 @@
2425
<SignAssembly>true</SignAssembly>
2526
<AssemblyOriginatorKeyFile>Lib.AspNetCore.WebPush.snk</AssemblyOriginatorKeyFile>
2627
</PropertyGroup>
28+
<ItemGroup>
29+
<None Include="..\..\README.md" Pack="true" PackagePath="\"/>
30+
</ItemGroup>
2731
<ItemGroup Condition="('$(TargetFramework)' == 'netcoreapp2.1') Or ('$(TargetFramework)' == 'net461')">
2832
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="2.1.0" />
2933
<PackageReference Include="Microsoft.Extensions.Http" Version="2.1.0" />

src/Lib.Azure.WebJobs.Extensions.WebPush/Lib.Azure.WebJobs.Extensions.WebPush.csproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
<PackageTags>azure;webjobs;azurefunctions;webpush</PackageTags>
1313
<PackageProjectUrl>https://github.com/tpeczek/Lib.Net.Http.WebPush</PackageProjectUrl>
1414
<PackageLicenseExpression>MIT</PackageLicenseExpression>
15+
<PackageReadmeFile>README.md</PackageReadmeFile>
1516
<RepositoryType>git</RepositoryType>
1617
<RepositoryUrl>git://github.com/tpeczek/Lib.Net.Http.WebPush</RepositoryUrl>
1718
<GenerateAssemblyTitleAttribute>true</GenerateAssemblyTitleAttribute>
@@ -24,6 +25,9 @@
2425
<SignAssembly>true</SignAssembly>
2526
<AssemblyOriginatorKeyFile>Lib.Azure.WebJobs.Extensions.WebPush.snk</AssemblyOriginatorKeyFile>
2627
</PropertyGroup>
28+
<ItemGroup>
29+
<None Include="..\..\README.md" Pack="true" PackagePath="\"/>
30+
</ItemGroup>
2731
<ItemGroup>
2832
<PackageReference Include="Microsoft.Azure.WebJobs" Version="3.0.0" />
2933
<PackageReference Include="Microsoft.Extensions.Http" Version="2.2.0" />

src/Lib.Net.Http.WebPush/Lib.Net.Http.WebPush.csproj

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<Description>Lib.Net.Http.WebPush is a library which provides a Web Push Protocol based client for Push Service.</Description>
44
<Copyright>Copyright © 2018 - 2022 Tomasz Pęczek</Copyright>
5-
<VersionPrefix>3.2.0</VersionPrefix>
5+
<VersionPrefix>3.2.1</VersionPrefix>
66
<Authors>Tomasz Pęczek</Authors>
77
<TargetFrameworks>net451;net461;netstandard2.0;net5.0;net6.0</TargetFrameworks>
88
<AssemblyTitle>Lib.Net.Http.WebPush</AssemblyTitle>
@@ -11,6 +11,7 @@
1111
<PackageTags>push;notifications;webpush;vapid</PackageTags>
1212
<PackageProjectUrl>https://github.com/tpeczek/Lib.Net.Http.WebPush</PackageProjectUrl>
1313
<PackageLicenseExpression>MIT</PackageLicenseExpression>
14+
<PackageReadmeFile>README.md</PackageReadmeFile>
1415
<RepositoryType>git</RepositoryType>
1516
<RepositoryUrl>git://github.com/tpeczek/Lib.Net.Http.WebPush</RepositoryUrl>
1617
<GenerateAssemblyTitleAttribute>true</GenerateAssemblyTitleAttribute>
@@ -23,6 +24,9 @@
2324
<SignAssembly>true</SignAssembly>
2425
<AssemblyOriginatorKeyFile>Lib.Net.Http.WebPush.snk</AssemblyOriginatorKeyFile>
2526
</PropertyGroup>
27+
<ItemGroup>
28+
<None Include="..\..\README.md" Pack="true" PackagePath="\"/>
29+
</ItemGroup>
2630
<ItemGroup Condition="'$(TargetFramework)' == 'net451'">
2731
<PackageReference Include="System.Net.Http" Version="4.3.4" />
2832
</ItemGroup>

0 commit comments

Comments
 (0)