Skip to content

Commit

Permalink
Update Parlot version (#679)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastienros authored Jul 11, 2024
1 parent 15198be commit 6ddf40f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<ItemGroup>
<PackageVersion Include="Microsoft.CSharp" Version="4.7.0" />
<PackageVersion Include="Microsoft.Extensions.FileProviders.Abstractions" Version="8.0.0" />
<PackageVersion Include="Parlot" Version="0.0.28" />
<PackageVersion Include="Parlot" Version="1.0.0" />
<PackageVersion Include="System.Text.Json" Version="8.0.4" />
<PackageVersion Include="TimeZoneConverter" Version="6.1.0" />

Expand Down
2 changes: 1 addition & 1 deletion Fluid/FluidParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class FluidParser
protected static readonly Parser<char> Pipe = Terms.Char('|');

protected static readonly Parser<TextSpan> String = Terms.String(StringLiteralQuotes.SingleOrDouble);
protected static readonly Parser<decimal> Number = Terms.Decimal(NumberOptions.AllowSign);
protected static readonly Parser<decimal> Number = Terms.Decimal();

protected static readonly Parser<string> DoubleEquals = Terms.Text("==");
protected static readonly Parser<string> NotEquals = Terms.Text("!=");
Expand Down

0 comments on commit 6ddf40f

Please sign in to comment.