Skip to content

Commit

Permalink
add docs and release notes for 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
baronfel committed Jun 15, 2018
1 parent 8c5a5db commit c2b5ef6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
4 changes: 4 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#### 1.5.0 - 15.06.2018
* Tweak INI File Parser to allow semicolon characters inside string values (thanks [@zakakula](https://github.com/zakaluka)!).
* 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

#### 1.4.0 - 23.02.2018
* Migration to latest TPSDK

Expand Down
6 changes: 4 additions & 2 deletions docs/content/IniTypeProvider.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,15 @@ Create a `Sample.ini` file like this:
[Section1]
intSetting = 2
stringSetting = stringValue
;you are free to add comments like this
; you are free to add comments like this. They are only valid if they begin a new line
[Section2]
floatSetting = 1.23 ; float settings are also supported
; float settings are also supported
floatSetting = 1.23
boolSetting = true
anotherBoolSetting = False
; settings with no value are OK
emptySetting =
stringWithSemiColonValue = DataSource=foo@bar;UserName=blah
Reference the type provider assembly and configure it to use your ini file:
*)
Expand Down
4 changes: 4 additions & 0 deletions docs/content/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#### 1.5.0 - 15.06.2018
* Tweak INI File Parser to allow semicolon characters inside string values (thanks [@zakakula](https://github.com/zakaluka)!).
* 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

#### 1.4.0 - 23.02.2018
* Migration to latest TPSDK

Expand Down

0 comments on commit c2b5ef6

Please sign in to comment.