File tree Expand file tree Collapse file tree 4 files changed +12
-6
lines changed Expand file tree Collapse file tree 4 files changed +12
-6
lines changed Original file line number Diff line number Diff line change
1
+ #### 1.0.0 - 12.04.2017
2
+ * YamlConfig provider: add ` InferTypesFromStrings ` optional parameter
3
+
1
4
#### 0.6.4 - 18.11.2016
2
5
* Add support for Guids in Yaml and AppSettings
3
6
Original file line number Diff line number Diff line change @@ -181,8 +181,8 @@ Target "NuGet" (fun _ ->
181
181
ReleaseNotes = release.Notes |> toLines
182
182
Tags = tags
183
183
OutputPath = nugetDir
184
- AccessKey = getBuildParamOrDefault " nugetkey" " "
185
- Publish = hasBuildParam " nugetkey"
184
+ // AccessKey = getBuildParamOrDefault "nugetkey" ""
185
+ // Publish = hasBuildParam "nugetkey"
186
186
Dependencies = [] })
187
187
( project + " .nuspec" )
188
188
)
Original file line number Diff line number Diff line change
1
+ #### 1.0.0 - 12.04.2017
2
+ * YamlConfig provider: add ` InferTypesFromStrings ` optional parameter
3
+
1
4
#### 0.6.4 - 18.11.2016
2
5
* Add support for Guids in Yaml and AppSettings
3
6
Original file line number Diff line number Diff line change @@ -5,13 +5,13 @@ open System.Reflection
5
5
[<assembly: AssemblyTitleAttribute( " FSharp.Configuration" ) >]
6
6
[<assembly: AssemblyProductAttribute( " FSharp.Configuration" ) >]
7
7
[<assembly: AssemblyDescriptionAttribute( " The FSharp.Configuration project contains type providers for the configuration of .NET projects." ) >]
8
- [<assembly: AssemblyVersionAttribute( " 0.6.4 " ) >]
9
- [<assembly: AssemblyFileVersionAttribute( " 0.6.4 " ) >]
8
+ [<assembly: AssemblyVersionAttribute( " 1.0.0 " ) >]
9
+ [<assembly: AssemblyFileVersionAttribute( " 1.0.0 " ) >]
10
10
do ()
11
11
12
12
module internal AssemblyVersionInformation =
13
13
let [<Literal>] AssemblyTitle = " FSharp.Configuration"
14
14
let [<Literal>] AssemblyProduct = " FSharp.Configuration"
15
15
let [<Literal>] AssemblyDescription = " The FSharp.Configuration project contains type providers for the configuration of .NET projects."
16
- let [<Literal>] AssemblyVersion = " 0.6.4 "
17
- let [<Literal>] AssemblyFileVersion = " 0.6.4 "
16
+ let [<Literal>] AssemblyVersion = " 1.0.0 "
17
+ let [<Literal>] AssemblyFileVersion = " 1.0.0 "
You can’t perform that action at this time.
0 commit comments