Skip to content

Commit

Permalink
bump version to 1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
rofr committed Oct 16, 2019
1 parent 9be1f8c commit 8c2d850
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Fig.Core/IniFileSettingsSource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ internal IniFileSettingsSource(string[] lines)
internal static IEnumerable<(string, string)> Parse(IEnumerable<string> lines)
{
var sectionMatcher = new Regex(@"^\[(.+)\]$", RegexOptions.IgnoreCase);
var keyValueMatcher = new Regex(@"^\s*( .+?)\s*=\s*(.*)$", RegexOptions.IgnoreCase);
var keyValueMatcher = new Regex(@"^\s*(.+?)\s*=\s*(.*)$", RegexOptions.IgnoreCase);

//Last section matched
var currentSection = "";
Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 1.4.{build}
version: 1.5.{build}
image: Ubuntu1804
assembly_info:
patch: true
Expand All @@ -19,4 +19,4 @@ build:
publish_nuget_symbols: true
use_snupkg_format: true
include_nuget_references: false
verbosity: minimal
verbosity: minimal

1 comment on commit 8c2d850

@rofr
Copy link
Member Author

@rofr rofr commented on 8c2d850 Oct 16, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Finishes #22, #23 and #24

Please sign in to comment.