Skip to content

Commit 5bbc32f

Browse files
Bump version to 1.0.0
1 parent 0900284 commit 5bbc32f

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

RELEASE_NOTES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
#### 1.0.0 - 12.04.2017
2+
* YamlConfig provider: add `InferTypesFromStrings` optional parameter
3+
14
#### 0.6.4 - 18.11.2016
25
* Add support for Guids in Yaml and AppSettings
36

build.fsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,8 +181,8 @@ Target "NuGet" (fun _ ->
181181
ReleaseNotes = release.Notes |> toLines
182182
Tags = tags
183183
OutputPath = nugetDir
184-
AccessKey = getBuildParamOrDefault "nugetkey" ""
185-
Publish = hasBuildParam "nugetkey"
184+
//AccessKey = getBuildParamOrDefault "nugetkey" ""
185+
//Publish = hasBuildParam "nugetkey"
186186
Dependencies = [] })
187187
(project + ".nuspec")
188188
)

docs/content/release-notes.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
#### 1.0.0 - 12.04.2017
2+
* YamlConfig provider: add `InferTypesFromStrings` optional parameter
3+
14
#### 0.6.4 - 18.11.2016
25
* Add support for Guids in Yaml and AppSettings
36

src/FSharp.Configuration/AssemblyInfo.fs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ open System.Reflection
55
[<assembly: AssemblyTitleAttribute("FSharp.Configuration")>]
66
[<assembly: AssemblyProductAttribute("FSharp.Configuration")>]
77
[<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")>]
1010
do ()
1111

1212
module internal AssemblyVersionInformation =
1313
let [<Literal>] AssemblyTitle = "FSharp.Configuration"
1414
let [<Literal>] AssemblyProduct = "FSharp.Configuration"
1515
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"

0 commit comments

Comments
 (0)