Skip to content

Commit

Permalink
Update revision number to 1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jamietre committed Jun 5, 2013
1 parent 15c1cc3 commit ee7bfa3
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 2 deletions.
Binary file modified distribution/CsQuery.dll
Binary file not shown.
Binary file modified distribution/CsQuery.pdb
Binary file not shown.
23 changes: 23 additions & 0 deletions source/CsQuery.Tests/Miscellaneous/Miscellaneous2.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,29 @@ namespace CsQuery.Tests.Miscellaneous
[TestFixture, TestClass]
public class Reindex: CsQueryTest
{
/// <summary>
/// Issue 103.
/// </summary>

[Test, TestMethod]
public void Issue103()
{
//var dom = TestDom("jquery-unit-index");
CQ dom = @" <p class='need_to_select'>
<p> Test </p>
<span class='need_to_remove'>
<p> Need To remove</p>
</span>
</p>";

var res = dom["*"].Remove(".need_to_remove");

Assert.AreEqual("see", res);



}

[Test, TestMethod]
public void Issue104()
{
Expand Down
2 changes: 1 addition & 1 deletion source/CsQuery/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]

[assembly: AssemblyVersion("1.3.5.124")]
[assembly: AssemblyVersion("1.3.5.126")]
//[assembly: AssemblyFileVersion("1.3.3")]

2 changes: 1 addition & 1 deletion source/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Please see the main [readme](https://github.com/jamietre/CsQuery/blob/master/REA

### Change Log

#### Version 1.3.5 (prerelease)
#### Version 1.4 (prerelease)

**Bug fixes**

Expand Down

0 comments on commit ee7bfa3

Please sign in to comment.