Skip to content

Commit

Permalink
🔖 release version 2.0.33
Browse files Browse the repository at this point in the history
  • Loading branch information
fluffynuts committed Jun 22, 2023
1 parent 35113f4 commit a266051
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<DefineConstants>BUILD_PEANUTBUTTER_INTERNAL</DefineConstants>
</PropertyGroup>
<PropertyGroup>
<PackageVersion>2.0.32</PackageVersion>
<PackageVersion>2.0.33</PackageVersion>
<DefaultLanguage>en-US</DefaultLanguage>
<PackageProjectUrl>https://github.com/fluffynuts/NExpect</PackageProjectUrl>
<PackageLicenseExpression>BSD-3-Clause</PackageLicenseExpression>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<DefineConstants>BUILD_PEANUTBUTTER_INTERNAL</DefineConstants>
</PropertyGroup>
<PropertyGroup>
<PackageVersion>2.0.32</PackageVersion>
<PackageVersion>2.0.33</PackageVersion>
<DefaultLanguage>en-US</DefaultLanguage>
<PackageProjectUrl>https://github.com/fluffynuts/NExpect</PackageProjectUrl>
<PackageLicenseExpression>BSD-3-Clause</PackageLicenseExpression>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<PropertyGroup>
<PackageVersion>2.0.32</PackageVersion>
<PackageVersion>2.0.33</PackageVersion>
<Authors>Davyd McColl</Authors>
<DefaultLanguage>en-US</DefaultLanguage>
<PackageProjectUrl>https://github.com/fluffynuts/NExpect</PackageProjectUrl>
Expand Down
2 changes: 1 addition & 1 deletion src/NExpect.Matchers.Xml/NExpect.Matchers.Xml.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<PropertyGroup>
<PackageVersion>2.0.32</PackageVersion>
<PackageVersion>2.0.33</PackageVersion>
<Authors>Davyd McColl</Authors>
<DefaultLanguage>en-US</DefaultLanguage>
<PackageProjectUrl>https://github.com/fluffynuts/NExpect</PackageProjectUrl>
Expand Down
2 changes: 1 addition & 1 deletion src/NExpect/Implementations/Fluency/To.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using System;
using NExpect.Implementations.Collections;
using NExpect.Implementations.Strings;
using NExpect.Interfaces;

// ReSharper disable ClassNeverInstantiated.Global
Expand All @@ -20,6 +19,7 @@ internal class To<T>
public IDeep<T> Deep => Next<Deep<T>>();
public IIntersection<T> Intersection => Next<Intersection<T>>();
public IApproximately<T> Approximately => Next<Approximately<T>>();
public IFind<T> Find => Next<Find<T>>();

public To(Func<T> actualFetcher) : base(actualFetcher)
{
Expand Down
5 changes: 5 additions & 0 deletions src/NExpect/Interfaces/ITo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,9 @@ public interface ITo<T> : ICanAddMatcher<T>
/// Starts an expectation for approximate equality
/// </summary>
IApproximately<T> Approximately { get; }

/// <summary>
/// Provides a dangling grammar point for extension (.Find)
/// </summary>
IFind<T> Find { get; }
}
2 changes: 1 addition & 1 deletion src/NExpect/NExpect.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<PackageVersion>2.0.32</PackageVersion>
<PackageVersion>2.0.33</PackageVersion>
<DefaultLanguage>en-US</DefaultLanguage>
<PackageProjectUrl>https://github.com/fluffynuts/NExpect</PackageProjectUrl>
<PackageLicenseExpression>BSD-3-Clause</PackageLicenseExpression>
Expand Down

0 comments on commit a266051

Please sign in to comment.