Skip to content

Commit 7041c44

Browse files
committed
Updated to 0.12.1
1 parent 782c2c7 commit 7041c44

File tree

11 files changed

+21
-8
lines changed

11 files changed

+21
-8
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# 0.12.1
2+
3+
Released on Wednesday, May 15 2019.
4+
5+
- Binary version fix
6+
- Fixed indexers are missing a `DomAccessorAttribute` (#30)
7+
- Added `cssRules` alias: `rules` (#29)
8+
19
# 0.12.0
210

311
Released on Sunday, May 12 2019.

src/AngleSharp.Css.Tests/AngleSharp.Css.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</ItemGroup>
1414

1515
<ItemGroup>
16-
<PackageReference Include="AngleSharp.Xml" Version="0.12.0" />
16+
<PackageReference Include="AngleSharp.Xml" Version="0.12.1" />
1717
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
1818
<PackageReference Include="NUnit" Version="3.11.0" />
1919
<PackageReference Include="NUnit3TestAdapter" Version="3.13.0" />

src/AngleSharp.Css.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 styling library anglesharp angle</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.Css/AngleSharp.Css.csproj

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

1212
<ItemGroup>
13-
<PackageReference Include="AngleSharp" Version="0.12.0" />
13+
<PackageReference Include="AngleSharp" Version="0.12.1" />
1414
</ItemGroup>
1515

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

src/AngleSharp.Css/Dom/ICssGroupingRule.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ public interface ICssGroupingRule : ICssRule
1414
/// Gets a list of all CSS rules contained within the grouping block.
1515
/// </summary>
1616
[DomName("cssRules")]
17+
[DomName("rules")]
1718
ICssRuleList Rules { get; }
1819

1920
/// <summary>

src/AngleSharp.Css/Dom/ICssKeyframesRule.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ public interface ICssKeyframesRule : ICssRule
1919
/// Gets a CSSRuleList of the CSS rules in the media rule.
2020
/// </summary>
2121
[DomName("cssRules")]
22+
[DomName("rules")]
2223
ICssRuleList Rules { get; }
2324

2425
/// <summary>
@@ -32,7 +33,7 @@ public interface ICssKeyframesRule : ICssRule
3233
void Add(String rule);
3334

3435
/// <summary>
35-
/// Deletes a keyframe rule from the current CSSKeyframesRule.
36+
/// Deletes a keyframe rule from the current CSSKeyframesRule.
3637
/// </summary>
3738
/// <param name="key">
3839
/// The index of the keyframe to be deleted, expressed as a string
@@ -45,7 +46,7 @@ public interface ICssKeyframesRule : ICssRule
4546
/// Returns a keyframe rule corresponding to the given key.
4647
/// </summary>
4748
/// <param name="key">
48-
/// A string containing an index of the keyframe to be returned,
49+
/// A string containing an index of the keyframe to be returned,
4950
/// resolving to a number between 0 and 1.
5051
/// </param>
5152
/// <returns>The keyframe or null.</returns>

src/AngleSharp.Css/Dom/ICssPseudoElementList.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ public interface ICssPseudoElementList
2121
/// <param name="index">The 0-based index.</param>
2222
/// <returns>The pseudo element, if any.</returns>
2323
[DomName("item")]
24+
[DomAccessor(Accessors.Getter)]
2425
ICssPseudoElement this[Int32 index] { get; }
2526

2627
/// <summary>

src/AngleSharp.Css/Dom/ICssRuleList.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace AngleSharp.Css.Dom
1+
namespace AngleSharp.Css.Dom
22
{
33
using AngleSharp.Attributes;
44
using System;
@@ -16,6 +16,7 @@ public interface ICssRuleList : IEnumerable<ICssRule>
1616
/// <param name="index">The 0-based index of the rule.</param>
1717
/// <returns>The CSS rule at the given index, if any.</returns>
1818
[DomName("item")]
19+
[DomAccessor(Accessors.Getter)]
1920
ICssRule this[Int32 index] { get; }
2021

2122
/// <summary>

src/AngleSharp.Css/Dom/ICssStyleSheet.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ public interface ICssStyleSheet : IStyleSheet
2121
/// Gets a CSSRuleList of the CSS rules in the style sheet.
2222
/// </summary>
2323
[DomName("cssRules")]
24+
[DomName("rules")]
2425
ICssRuleList Rules { get; }
2526

2627
/// <summary>

src/AngleSharp.Performance.Css/AngleSharp.Performance.Css.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
<ItemGroup>
2222
<PackageReference Include="Alba.CsCss" version="1.0.1.0" />
23-
<PackageReference Include="AngleSharp" Version="0.12.0" />
23+
<PackageReference Include="AngleSharp" Version="0.12.1" />
2424
<PackageReference Include="ExCSS" version="2.0.6" />
2525
</ItemGroup>
2626
</Project>

0 commit comments

Comments
 (0)