From c2b5ef6ec8992ae179e4f0eba6c6c375bf6aabe5 Mon Sep 17 00:00:00 2001 From: Chet Husk Date: Fri, 15 Jun 2018 08:04:59 -0500 Subject: [PATCH] add docs and release notes for 1.5.0 --- RELEASE_NOTES.md | 4 ++++ docs/content/IniTypeProvider.fsx | 6 ++++-- docs/content/release-notes.md | 4 ++++ 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 21e208fe..d641f99b 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -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 diff --git a/docs/content/IniTypeProvider.fsx b/docs/content/IniTypeProvider.fsx index dc69be72..54ea2135 100644 --- a/docs/content/IniTypeProvider.fsx +++ b/docs/content/IniTypeProvider.fsx @@ -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: *) diff --git a/docs/content/release-notes.md b/docs/content/release-notes.md index 21e208fe..d641f99b 100644 --- a/docs/content/release-notes.md +++ b/docs/content/release-notes.md @@ -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