Skip to content

Commit

Permalink
Merge pull request #26 from AngleSharp/devel
Browse files Browse the repository at this point in the history
Release 0.14.0
  • Loading branch information
FlorianRappl authored Mar 31, 2020
2 parents c26cbce + 2970ab1 commit 61805ed
Show file tree
Hide file tree
Showing 8 changed files with 47 additions and 11 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# 0.14.0

Released on Tuesday, March 31 2020.

- Added support for .NET framework 4.6
- Added support for .NET framework 4.6.1
- Added support for .NET framework 4.7.2
- Added shallow support for source link

# 0.13.1

Released on Tuesday, September 24 2019.
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2013 - 2019 AngleSharp
Copyright (c) 2013 - 2020 AngleSharp

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ This project is supported by the [.NET Foundation](https://dotnetfoundation.org)

The MIT License (MIT)

Copyright (c) 2015 - 2019 AngleSharp
Copyright (c) 2015 - 2020 AngleSharp

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
3 changes: 3 additions & 0 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ var projectName = "AngleSharp.Io";
var solutionName = "AngleSharp.Io";
var frameworks = new Dictionary<String, String>
{
{ "net46", "net46" },
{ "net461", "net461" },
{ "net472", "net472" },
{ "netstandard2.0", "netstandard2.0" },
};

Expand Down
11 changes: 7 additions & 4 deletions src/AngleSharp.Io.Tests/AngleSharp.Io.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,13 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
<PackageReference Include="NUnit" Version="3.11.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.11.0" />
<PackageReference Include="FluentAssertions" Version="5.5.3" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="NUnit" Version="3.12.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.16.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="FluentAssertions" Version="5.10.3" />
<PackageReference Include="Appveyor.TestLogger" Version="2.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/AngleSharp.Io.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<copyright>Copyright 2016-2019, AngleSharp</copyright>
<tags>html html5 css css3 dom requester http https io filesystem storage httpclient cache</tags>
<dependencies>
<dependency id="AngleSharp" version="0.13.0" />
<dependency id="AngleSharp" version="0.14.0" />
</dependencies>
</metadata>
</package>
27 changes: 24 additions & 3 deletions src/AngleSharp.Io/AngleSharp.Io.csproj
Original file line number Diff line number Diff line change
@@ -1,16 +1,37 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>AngleSharp.Io</AssemblyName>
<RootNamespace>AngleSharp.Io</RootNamespace>
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">netstandard2.0</TargetFrameworks>
<TargetFrameworks Condition=" '$(OS)' != 'Windows_NT' ">netstandard2.0</TargetFrameworks>
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">netstandard2.0;net46;net461;net472</TargetFrameworks>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>Key.snk</AssemblyOriginatorKeyFile>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<LangVersion>7.1</LangVersion>
<RepositoryUrl>https://github.com/AngleSharp/AngleSharp.Io</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="AngleSharp" Version="0.13.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/>
</ItemGroup>

<ItemGroup>
<PackageReference Include="AngleSharp" Version="0.14.0" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net46'">
<Reference Include="System.Net" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Net.WebSockets" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net472'">
<Reference Include="System.Net.Http" />
</ItemGroup>

<PropertyGroup Condition=" '$(OS)' == 'Windows_NT' ">
Expand Down
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
<PropertyGroup>
<Description>Providers additional requesters and IO helpers for AngleSharp.</Description>
<Product>AngleSharp.Io</Product>
<Version>0.13.1</Version>
<Version>0.14.0</Version>
</PropertyGroup>
</Project>

0 comments on commit 61805ed

Please sign in to comment.