Skip to content

Commit

Permalink
v1.3.9 return string[] from SplitBy
Browse files Browse the repository at this point in the history
  • Loading branch information
smabuk committed Dec 6, 2023
1 parent e5fe11a commit b25eee4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Smab.Helpers/ParsingHelpers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public static IEnumerable<int> AsDigits(this string input) =>



public static IEnumerable<string> SplitBy(this string input, string[]? separator = null, StringSplitOptions options = StringSplitOptions.RemoveEmptyEntries | StringSplitOptions.TrimEntries) =>
public static string[] SplitBy(this string input, string[]? separator = null, StringSplitOptions options = StringSplitOptions.RemoveEmptyEntries | StringSplitOptions.TrimEntries) =>
input.Split(separator, options);


Expand Down
2 changes: 1 addition & 1 deletion src/Smab.Helpers/Smab.Helpers.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<PropertyGroup>
<PackageReleaseNotes>.NET 8.0</PackageReleaseNotes>
<VersionPrefix>1.3.8</VersionPrefix>
<VersionPrefix>1.3.9</VersionPrefix>
<Preview></Preview>
<VersionSuffix Condition="'$(Preview)' != '' And '$(BUILD_BUILDNUMBER)' == ''">$(Preview).$([System.DateTime]::get_Now().get_Year())$([System.DateTime]::get_Now().get_Month().ToString("D2"))$([System.DateTime]::get_Now().get_Day().ToString("D2"))-$([System.DateTime]::get_Now().get_Hour().ToString("D2"))$([System.DateTime]::get_Now().get_Minute().ToString("D2"))</VersionSuffix>
<VersionSuffix Condition="'$(Preview)' != '' And '$(BUILD_BUILDNUMBER)' != ''">$(Preview).$(BUILD_BUILDNUMBER)</VersionSuffix>
Expand Down

0 comments on commit b25eee4

Please sign in to comment.