diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index f668953..3e6c6de 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,6 @@ +#### 0.0.12 - February 26 2015 +* Implements Add command + #### 0.0.11 - February 26 2015 * Removes debug information from bootstrapper diff --git a/build.fsx b/build.fsx index 21a9085..6e02449 100644 --- a/build.fsx +++ b/build.fsx @@ -349,10 +349,10 @@ Target "All" DoNothing ==> "AssemblyInfo" ==> "Build" ==> "RunTests" - =?> ("GenerateReferenceDocs",isLocalBuild && not isMono) - =?> ("GenerateDocs",isLocalBuild && not isMono) + //=?> ("GenerateReferenceDocs",isLocalBuild && not isMono) + //=?> ("GenerateDocs",isLocalBuild && not isMono) ==> "All" - =?> ("ReleaseDocs",isLocalBuild && not isMono) + //=?> ("ReleaseDocs",isLocalBuild && not isMono) "All" #if MONO diff --git a/src/Paket.Unity3D.Bootstrapper/Properties/AssemblyInfo.cs b/src/Paket.Unity3D.Bootstrapper/Properties/AssemblyInfo.cs index f5b9bad..e7f2460 100644 --- a/src/Paket.Unity3D.Bootstrapper/Properties/AssemblyInfo.cs +++ b/src/Paket.Unity3D.Bootstrapper/Properties/AssemblyInfo.cs @@ -4,10 +4,10 @@ [assembly: AssemblyTitleAttribute("Paket.Unity3D.Bootstrapper")] [assembly: AssemblyProductAttribute("Paket.Unity3D")] [assembly: AssemblyDescriptionAttribute("Piggy-backs ontop of Paket to add dependencies to Unity3D projects")] -[assembly: AssemblyVersionAttribute("0.0.11")] -[assembly: AssemblyFileVersionAttribute("0.0.11")] +[assembly: AssemblyVersionAttribute("0.0.12")] +[assembly: AssemblyFileVersionAttribute("0.0.12")] namespace System { internal static class AssemblyVersionInformation { - internal const string Version = "0.0.11"; + internal const string Version = "0.0.12"; } } diff --git a/src/Paket.Unity3D/AssemblyInfo.fs b/src/Paket.Unity3D/AssemblyInfo.fs index d0f8233..d53a104 100644 --- a/src/Paket.Unity3D/AssemblyInfo.fs +++ b/src/Paket.Unity3D/AssemblyInfo.fs @@ -4,9 +4,9 @@ open System.Reflection [] [] [] -[] -[] +[] +[] do () module internal AssemblyVersionInformation = - let [] Version = "0.0.11" + let [] Version = "0.0.12"