File tree Expand file tree Collapse file tree 4 files changed +14
-10
lines changed Expand file tree Collapse file tree 4 files changed +14
-10
lines changed Original file line number Diff line number Diff line change 1+ ### 1.2.1 - Apr 8 2020
2+ * [ Improve C# interop] ( https://github.com/muehlhaus/FSharp.Plotly/commit/4bc8a45d4cdea3961c15429680923927b47a2840 ) by using null as default parameter for optional parameters in chart extensions and requiring qualified access for style parameters
3+
4+
15### 1.2.0 - Feb 17 2020
26Additional functionality:
3- * *
47 * [ Various marker style options] ( https://github.com/muehlhaus/FSharp.Plotly/commit/11a80f94d9fb9f94a4504073955e009746e9fd0d )
58 * [ Config support] ( https://github.com/muehlhaus/FSharp.Plotly/commit/70998edd586553b40a8b95de56d86639902a5420 )
69 * [ Chart.Stack works now with both 2D and 3D Charts] ( https://github.com/muehlhaus/FSharp.Plotly/commit/db7ce675a73f37598590f24ac99c246fce78759e )
Original file line number Diff line number Diff line change @@ -280,8 +280,9 @@ Target.create "NuGet" (fun _ ->
280280Target.create " PublishNuget" ( fun _ ->
281281 Paket.push( fun p ->
282282 { p with
283+ WorkingDir = pkgDir
283284 PublishUrl = " https://www.nuget.org"
284- WorkingDir = " bin " })
285+ ApiKey = Environment.environVarOrDefault " NuGet-key " " " })
285286)
286287
287288
Original file line number Diff line number Diff line change @@ -5,15 +5,15 @@ open System.Reflection
55[<assembly: AssemblyTitleAttribute( " FSharp.Plotly.WPF" ) >]
66[<assembly: AssemblyProductAttribute( " FSharp.Plotly" ) >]
77[<assembly: AssemblyDescriptionAttribute( " A F# interactive charting library using plotly.js" ) >]
8- [<assembly: AssemblyVersionAttribute( " 1.2.0 " ) >]
9- [<assembly: AssemblyFileVersionAttribute( " 1.2.0 " ) >]
8+ [<assembly: AssemblyVersionAttribute( " 1.2.1 " ) >]
9+ [<assembly: AssemblyFileVersionAttribute( " 1.2.1 " ) >]
1010[<assembly: AssemblyConfigurationAttribute( " Release" ) >]
1111do ()
1212
1313module internal AssemblyVersionInformation =
1414 let [<Literal>] AssemblyTitle = " FSharp.Plotly.WPF"
1515 let [<Literal>] AssemblyProduct = " FSharp.Plotly"
1616 let [<Literal>] AssemblyDescription = " A F# interactive charting library using plotly.js"
17- let [<Literal>] AssemblyVersion = " 1.2.0 "
18- let [<Literal>] AssemblyFileVersion = " 1.2.0 "
17+ let [<Literal>] AssemblyVersion = " 1.2.1 "
18+ let [<Literal>] AssemblyFileVersion = " 1.2.1 "
1919 let [<Literal>] AssemblyConfiguration = " Release"
Original file line number Diff line number Diff line change @@ -5,15 +5,15 @@ open System.Reflection
55[<assembly: AssemblyTitleAttribute( " FSharp.Plotly" ) >]
66[<assembly: AssemblyProductAttribute( " FSharp.Plotly" ) >]
77[<assembly: AssemblyDescriptionAttribute( " A F# interactive charting library using plotly.js" ) >]
8- [<assembly: AssemblyVersionAttribute( " 1.2.0 " ) >]
9- [<assembly: AssemblyFileVersionAttribute( " 1.2.0 " ) >]
8+ [<assembly: AssemblyVersionAttribute( " 1.2.1 " ) >]
9+ [<assembly: AssemblyFileVersionAttribute( " 1.2.1 " ) >]
1010[<assembly: AssemblyConfigurationAttribute( " Release" ) >]
1111do ()
1212
1313module internal AssemblyVersionInformation =
1414 let [<Literal>] AssemblyTitle = " FSharp.Plotly"
1515 let [<Literal>] AssemblyProduct = " FSharp.Plotly"
1616 let [<Literal>] AssemblyDescription = " A F# interactive charting library using plotly.js"
17- let [<Literal>] AssemblyVersion = " 1.2.0 "
18- let [<Literal>] AssemblyFileVersion = " 1.2.0 "
17+ let [<Literal>] AssemblyVersion = " 1.2.1 "
18+ let [<Literal>] AssemblyFileVersion = " 1.2.1 "
1919 let [<Literal>] AssemblyConfiguration = " Release"
You can’t perform that action at this time.
0 commit comments