Skip to content

Commit c2b5ef6

Browse files
committed
add docs and release notes for 1.5.0
1 parent 8c5a5db commit c2b5ef6

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

RELEASE_NOTES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
#### 1.5.0 - 15.06.2018
2+
* Tweak INI File Parser to allow semicolon characters inside string values (thanks [@zakakula](https://github.com/zakaluka)!).
3+
* NOTE: This will result in comments no longer being valid beside string values, instead comments should go on a line above the key-value pair
4+
15
#### 1.4.0 - 23.02.2018
26
* Migration to latest TPSDK
37

docs/content/IniTypeProvider.fsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,15 @@ Create a `Sample.ini` file like this:
1616
[Section1]
1717
intSetting = 2
1818
stringSetting = stringValue
19-
;you are free to add comments like this
19+
; you are free to add comments like this. They are only valid if they begin a new line
2020
[Section2]
21-
floatSetting = 1.23 ; float settings are also supported
21+
; float settings are also supported
22+
floatSetting = 1.23
2223
boolSetting = true
2324
anotherBoolSetting = False
2425
; settings with no value are OK
2526
emptySetting =
27+
stringWithSemiColonValue = DataSource=foo@bar;UserName=blah
2628
2729
Reference the type provider assembly and configure it to use your ini file:
2830
*)

docs/content/release-notes.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
#### 1.5.0 - 15.06.2018
2+
* Tweak INI File Parser to allow semicolon characters inside string values (thanks [@zakakula](https://github.com/zakaluka)!).
3+
* NOTE: This will result in comments no longer being valid beside string values, instead comments should go on a line above the key-value pair
4+
15
#### 1.4.0 - 23.02.2018
26
* Migration to latest TPSDK
37

0 commit comments

Comments
 (0)