Skip to content

Commit ce76a67

Browse files
committed
Alignment release 0.12.1
1 parent 737fd6a commit ce76a67

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 0.12.1
2+
3+
Released on Wednesday, May 15 2019.
4+
5+
- Binary version fix
6+
- Placed `WithXml` in the AngleSharp namespace (#4)
7+
18
# 0.12.0
29

310
Released on Thursday, May 2 2019.

src/AngleSharp.Xml.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<copyright>Copyright 2016-2019, AngleSharp</copyright>
1515
<tags>html html5 css css3 dom requester http https xml dtd</tags>
1616
<dependencies>
17-
<dependency id="AngleSharp" version="0.12.0" />
17+
<dependency id="AngleSharp" version="0.12.1" />
1818
</dependencies>
1919
</metadata>
2020
</package>

src/AngleSharp.Xml/AngleSharp.Xml.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="AngleSharp" Version="0.12.0" />
12+
<PackageReference Include="AngleSharp" Version="0.12.1" />
1313
</ItemGroup>
1414

1515
<PropertyGroup Condition=" '$(OS)' == 'Windows_NT' ">

src/AngleSharp.Xml/XmlConfigurationExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace AngleSharp.Xml
1+
namespace AngleSharp
22
{
33
using AngleSharp.Dom;
44
using AngleSharp.Io;
@@ -23,7 +23,7 @@ public static class XmlConfigurationExtensions
2323
public static IConfiguration WithXml(this IConfiguration configuration)
2424
{
2525
var documentFactory = configuration.Services.OfType<DefaultDocumentFactory>().FirstOrDefault();
26-
26+
2727
if (documentFactory != null)
2828
{
2929
documentFactory.Unregister(MimeTypeNames.Xml);

src/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
<PropertyGroup>
33
<Description>Adds a powerful XML and DTD parser to AngleSharp.</Description>
44
<Product>AngleSharp.Xml</Product>
5-
<Version>0.13.0</Version>
5+
<Version>0.12.1</Version>
66
</PropertyGroup>
77
</Project>

0 commit comments

Comments
 (0)