Skip to content

Commit 5d13093

Browse files
committed
Prepare for 0.14
1 parent 89a8c3f commit 5d13093

File tree

6 files changed

+11
-5
lines changed

6 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# 0.14.0
22

3-
Released on ?.
3+
Released on Tuesday, March 31 2020.
44

55
- Added more overloads for `ToXml` and `ToMarkup`
66
- Allow transforming all empty elements to self closing tags
77
- Serialize self-closing tags correctly (#11)
8+
- Updated the `IMarkupFormatter` implementations
89

910
# 0.13.0
1011

CONTRIBUTORS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Thanks :heart: to all who contributed to AngleSharp.Xml via issues, pull request
55
AngleSharp.Xml contains code written by (in order of first pull request / commit):
66

77
* [Florian Rappl](https://github.com/FlorianRappl)
8+
* [Konstantin Safonov](https://github.com/kasthack)
89

910
Without these awesome people AngleSharp.Xml could not exist. Thanks to everyone for your contributions! :beers:
1011

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2013 - 2019 AngleSharp
3+
Copyright (c) 2013 - 2020 AngleSharp
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ This project is supported by the [.NET Foundation](https://dotnetfoundation.org)
7474

7575
The MIT License (MIT)
7676

77-
Copyright (c) 2019 AngleSharp
77+
Copyright (c) 2020 AngleSharp
7878

7979
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:
8080

build.cake

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@ var projectName = "AngleSharp.Xml";
33
var solutionName = "AngleSharp.Xml";
44
var frameworks = new Dictionary<String, String>
55
{
6+
{ "net46", "net46" },
7+
{ "net461", "net461" },
8+
{ "net472", "net472" },
69
{ "netstandard1.3", "netstandard1.3" },
10+
{ "netstandard2.0", "netstandard2.0" },
711
};
812

913
#load tools/anglesharp.cake

src/AngleSharp.Xml.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1212
<description>Adds a powerful XML and DTD parser to AngleSharp.</description>
1313
<releaseNotes>https://github.com/AngleSharp/AngleSharp.Xml/blob/master/CHANGELOG.md</releaseNotes>
14-
<copyright>Copyright 2016-2019, AngleSharp</copyright>
14+
<copyright>Copyright 2016-2020, AngleSharp</copyright>
1515
<tags>html html5 css css3 dom requester http https xml dtd</tags>
1616
<dependencies>
17-
<dependency id="AngleSharp" version="0.13.0" />
17+
<dependency id="AngleSharp" version="0.14.0" />
1818
</dependencies>
1919
</metadata>
2020
</package>

0 commit comments

Comments
 (0)