Skip to content

Commit 44b6f04

Browse files
committed
Updated README.MD
Updated package version to 1.1.0
1 parent d31ff0b commit 44b6f04

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,12 +99,14 @@ In addition, the `Format` method takes an optional `IniFormatOptions` parameter
9999
|------|-----------|-------|
100100
|`EnsureBlankLinesBetweenSections`|If true, a blank line is inserted between each section.|`false`|
101101
|`EnsureBlankLinesBetweenProperties`|If true, a blank line is inserted between each property.|`false`|
102+
|`RemoveSuccessiveBlankLines`|If true, any successive blank lines are removed.|`false`|
102103

103104
```cs
104105
var ini = new Ini(iniFilePath);
105106
ini.Format(new IniFormatOptions
106107
{
107-
EnsureBlankLinesBetweenSections = true
108+
EnsureBlankLinesBetweenSections = true,
109+
RemoveSuccessiveBlankLines = true
108110
});
109111
ini.SaveTo(iniFilePath);
110112
```

src/IniFile/IniFile.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
5-
<Version>1.1.0-beta.1</Version>
5+
<Version>1.1.0</Version>
66
<Authors>Jeevan James</Authors>
77
<Company>Jeevan James</Company>
88
<Description>.NET library to open, modify and save .INI files</Description>

tests/IniFile.Tests/IniFileTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ limitations under the License.
1919
#endregion
2020

2121
using System;
22+
2223
using Shouldly;
2324

2425
using Xunit;

0 commit comments

Comments
 (0)