This repository was archived by the owner on Apr 26, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +11
-6
lines changed
Expand file tree Collapse file tree 3 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -144,6 +144,7 @@ Target.create "GenerateDocs" (fun _ ->
144144)
145145
146146Target.create " ReleaseDocs" ( fun _ ->
147+ Shell.CleanDirs [ tempDocsDir ]
147148 Git.Repository.cloneSingleBranch " " ( gitHome + " /" + gitName + " .git" ) " gh-pages" tempDocsDir
148149 DocFx ( fun p -> { p with ToolPath = docfxToolPath })
149150 Git.Staging.stageAll tempDocsDir
Original file line number Diff line number Diff line change 1+ #### 1.0.5 - 22.05.2018
2+
3+ * Add service version to service identifier (no more random version selection when multiple are available).
4+
15#### 1.0.4 - 10.04.2018
26
37* Remove Common.Logging dependency since not used any more.
Original file line number Diff line number Diff line change @@ -5,15 +5,15 @@ open System.Reflection
55[<assembly: AssemblyTitleAttribute( " XRoadProvider" ) >]
66[<assembly: AssemblyProductAttribute( " XRoadProvider" ) >]
77[<assembly: AssemblyDescriptionAttribute( " Type providers for generating types and service interfaces for XRoad producers." ) >]
8- [<assembly: AssemblyVersionAttribute( " 1.0.4 " ) >]
9- [<assembly: AssemblyFileVersionAttribute( " 1.0.4 " ) >]
10- [<assembly: AssemblyInformationalVersionAttribute( " 1.0.4 " ) >]
8+ [<assembly: AssemblyVersionAttribute( " 1.0.5 " ) >]
9+ [<assembly: AssemblyFileVersionAttribute( " 1.0.5 " ) >]
10+ [<assembly: AssemblyInformationalVersionAttribute( " 1.0.5 " ) >]
1111do ()
1212
1313module internal AssemblyVersionInformation =
1414 let [<Literal>] AssemblyTitle = " XRoadProvider"
1515 let [<Literal>] AssemblyProduct = " XRoadProvider"
1616 let [<Literal>] AssemblyDescription = " Type providers for generating types and service interfaces for XRoad producers."
17- let [<Literal>] AssemblyVersion = " 1.0.4 "
18- let [<Literal>] AssemblyFileVersion = " 1.0.4 "
19- let [<Literal>] AssemblyInformationalVersion = " 1.0.4 "
17+ let [<Literal>] AssemblyVersion = " 1.0.5 "
18+ let [<Literal>] AssemblyFileVersion = " 1.0.5 "
19+ let [<Literal>] AssemblyInformationalVersion = " 1.0.5 "
You can’t perform that action at this time.
0 commit comments