diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index ebba887..6aee6f2 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,6 @@ +#### 0.0.5 - August 6 2016 +* Support for nested particles + #### 0.0.4 - August 3 2016 * Fixes to NuGet package diff --git a/build.fsx b/build.fsx index 0c5c8e4..cbb5986 100644 --- a/build.fsx +++ b/build.fsx @@ -435,6 +435,8 @@ Target "All" DoNothing "GenerateHelpDebug" ==> "KeepRunning" +"All" + ==> "Release" //"ReleaseDocs" // ==> "Release" diff --git a/src/FSharp.Data.Xsd/AssemblyInfo.DesignTime.fs b/src/FSharp.Data.Xsd/AssemblyInfo.DesignTime.fs index b875cb9..2acc650 100644 --- a/src/FSharp.Data.Xsd/AssemblyInfo.DesignTime.fs +++ b/src/FSharp.Data.Xsd/AssemblyInfo.DesignTime.fs @@ -4,10 +4,10 @@ open System.Reflection [] [] [] -[] -[] +[] +[] do () module internal AssemblyVersionInformation = - let [] Version = "0.0.4" - let [] InformationalVersion = "0.0.4" + let [] Version = "0.0.5" + let [] InformationalVersion = "0.0.5" diff --git a/src/FSharp.Data.Xsd/AssemblyInfo.fs b/src/FSharp.Data.Xsd/AssemblyInfo.fs index 983c0e1..68f1fa8 100644 --- a/src/FSharp.Data.Xsd/AssemblyInfo.fs +++ b/src/FSharp.Data.Xsd/AssemblyInfo.fs @@ -4,10 +4,10 @@ open System.Reflection [] [] [] -[] -[] +[] +[] do () module internal AssemblyVersionInformation = - let [] Version = "0.0.4" - let [] InformationalVersion = "0.0.4" + let [] Version = "0.0.5" + let [] InformationalVersion = "0.0.5"