Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
akunzai committed Oct 30, 2019
1 parent a94defc commit 488c3f8
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 20 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

All notable changes to this project will be documented in this file.

## 2019-10-30

### GSS.Authorization.OAuth2(.HttpClient)? 2.0.0

- Support .Net Core 3.0
- Replace Newtonsoft.Json by System.Text.Json
- Use nullable reference types

### GSS.Authorization.OAuth2.HttpClient 1.5.1

- Avoid register duplicated OAuth2 Authorizer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
<Description>OAuth 2.0 authorized HttpClient, friendly with HttpClientFactory</Description>
<PackageTags>OAuth;OAuth2;HttpClient;HttpHandler</PackageTags>
<Version>1.5.1</Version>
<Version>2.0.0</Version>
<RootNamespace>GSS.Authorization.OAuth2</RootNamespace>
</PropertyGroup>

Expand Down
38 changes: 19 additions & 19 deletions src/GSS.Authorization.OAuth2/GSS.Authorization.OAuth2.csproj
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0;netcoreapp3.0</TargetFrameworks>
<Description>OAuth 2.0 Authorizer</Description>
<PackageTags>OAuth;OAuth2</PackageTags>
<Version>1.5.0</Version>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Options" Version="2.0.0" />
<PackageReference Include="System.ComponentModel.Annotations" Version="4.5.0" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' != 'netcoreapp3.0' ">
<PackageReference Include="System.Text.Json" Version="4.6.0" />
</ItemGroup>

</Project>
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0;netcoreapp3.0</TargetFrameworks>
<Description>OAuth 2.0 Authorizer</Description>
<PackageTags>OAuth;OAuth2</PackageTags>
<Version>2.0.0</Version>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Options" Version="2.0.0" />
<PackageReference Include="System.ComponentModel.Annotations" Version="4.5.0" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' != 'netcoreapp3.0' ">
<PackageReference Include="System.Text.Json" Version="4.6.0" />
</ItemGroup>

</Project>

0 comments on commit 488c3f8

Please sign in to comment.