Skip to content

Commit 8c2d850

Browse files
committed
bump version to 1.5
1 parent 9be1f8c commit 8c2d850

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Fig.Core/IniFileSettingsSource.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ internal IniFileSettingsSource(string[] lines)
2424
internal static IEnumerable<(string, string)> Parse(IEnumerable<string> lines)
2525
{
2626
var sectionMatcher = new Regex(@"^\[(.+)\]$", RegexOptions.IgnoreCase);
27-
var keyValueMatcher = new Regex(@"^\s*( .+?)\s*=\s*(.*)$", RegexOptions.IgnoreCase);
27+
var keyValueMatcher = new Regex(@"^\s*(.+?)\s*=\s*(.*)$", RegexOptions.IgnoreCase);
2828

2929
//Last section matched
3030
var currentSection = "";

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 1.4.{build}
1+
version: 1.5.{build}
22
image: Ubuntu1804
33
assembly_info:
44
patch: true
@@ -19,4 +19,4 @@ build:
1919
publish_nuget_symbols: true
2020
use_snupkg_format: true
2121
include_nuget_references: false
22-
verbosity: minimal
22+
verbosity: minimal

0 commit comments

Comments
 (0)