Skip to content

Commit b826726

Browse files
committed
- .NET 5.0 explicit support
- Simplify.Web bump to 4.4 Changelog added
1 parent 2b152f6 commit b826726

File tree

3 files changed

+18
-8
lines changed

3 files changed

+18
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![AppVeyor branch](https://img.shields.io/appveyor/ci/i4004/simplify-web-json/master)](https://ci.appveyor.com/project/i4004/simplify-web-json)
66
[![Libraries.io dependency status for latest release](https://img.shields.io/librariesio/release/nuget/Simplify.Web.Json)](https://libraries.io/nuget/Simplify.Web.Json)
77
[![CodeFactor Grade](https://img.shields.io/codefactor/grade/github/SimplifyNet/Simplify.Web.Json)](https://www.codefactor.io/repository/github/simplifynet/simplify.web.Json)
8-
![Platform](https://img.shields.io/badge/platform-.NET%20Standard%202.0%20%7C%20.NET%204.6.2%20%7C%20.NET%20Core%203.1-lightgrey)
8+
![Platform](https://img.shields.io/badge/platform-.NET%205.0%20%7C%20.NET%20Standard%202.0%20%7C%20.NET%204.6.2%20%7C%20.NET%20Core%203.1-lightgrey)
99
[![Dependabot Status](https://api.dependabot.com/badges/status?host=github&repo=SimplifyNet/Simplify.Web.Json)](https://dependabot.com)
1010
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen)](http://makeapullrequest.com)
1111

src/Simplify.Web.Json/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Changelog
2+
3+
## [2.2.1] - 2021-04-26
4+
5+
### Added
6+
7+
- .NET 5.0 explicit support
8+
9+
### Dependencies
10+
11+
- Simplify.Web bump to 4.4
Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>netcoreapp3.1;netstandard2.0;net462</TargetFrameworks>
3+
<TargetFrameworks>net5.0;netcoreapp3.1;netstandard2.0;net462</TargetFrameworks>
44
<LangVersion>9.0</LangVersion>
55
<Nullable>enable</Nullable>
66
<OutputPath>bin\Any CPU\$(Configuration)\</OutputPath>
@@ -9,11 +9,7 @@
99
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
1010
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1111

12-
<Version>2.2</Version>
13-
<PackageReleaseNotes>
14-
Updates
15-
* Upgrade to Newtonsoft.Json 13.0.1
16-
</PackageReleaseNotes>
12+
<Version>2.2.1</Version>
1713

1814
<Authors>Alexander Krylkov</Authors>
1915
<Product>Simplify</Product>
@@ -23,12 +19,15 @@
2319
<PackageIcon>icon.png</PackageIcon>
2420
<PublishRepositoryUrl>true</PublishRepositoryUrl>
2521
<PackageTags>Simplify.Web JSON</PackageTags>
22+
23+
<PackageReleaseNotes>See https://github.com/SimplifyNet/Simplify.Web.Json/tree/master/src/Simplify.Web.Json/CHANGELOG.md for details</PackageReleaseNotes>
2624
</PropertyGroup>
2725
<ItemGroup>
28-
<PackageReference Include="Simplify.Web" Version="4.2.*" />
26+
<PackageReference Include="Simplify.Web" Version="4.4.*" />
2927
<PackageReference Include="Newtonsoft.Json" Version="13.0.*" />
3028
</ItemGroup>
3129
<ItemGroup>
3230
<None Include="..\..\images\icon.png" Pack="true" Visible="false" PackagePath="" />
31+
<None Include="CHANGELOG.md" Pack="true" PackagePath="\" />
3332
</ItemGroup>
3433
</Project>

0 commit comments

Comments
 (0)