File tree 4 files changed +14
-10
lines changed
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
+
1
5
### 1.2.0 - Feb 17 2020
2
6
Additional functionality:
3
- * *
4
7
* [ Various marker style options] ( https://github.com/muehlhaus/FSharp.Plotly/commit/11a80f94d9fb9f94a4504073955e009746e9fd0d )
5
8
* [ Config support] ( https://github.com/muehlhaus/FSharp.Plotly/commit/70998edd586553b40a8b95de56d86639902a5420 )
6
9
* [ 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 _ ->
280
280
Target.create " PublishNuget" ( fun _ ->
281
281
Paket.push( fun p ->
282
282
{ p with
283
+ WorkingDir = pkgDir
283
284
PublishUrl = " https://www.nuget.org"
284
- WorkingDir = " bin " })
285
+ ApiKey = Environment.environVarOrDefault " NuGet-key " " " })
285
286
)
286
287
287
288
Original file line number Diff line number Diff line change @@ -5,15 +5,15 @@ open System.Reflection
5
5
[<assembly: AssemblyTitleAttribute( " FSharp.Plotly.WPF" ) >]
6
6
[<assembly: AssemblyProductAttribute( " FSharp.Plotly" ) >]
7
7
[<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 " ) >]
10
10
[<assembly: AssemblyConfigurationAttribute( " Release" ) >]
11
11
do ()
12
12
13
13
module internal AssemblyVersionInformation =
14
14
let [<Literal>] AssemblyTitle = " FSharp.Plotly.WPF"
15
15
let [<Literal>] AssemblyProduct = " FSharp.Plotly"
16
16
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 "
19
19
let [<Literal>] AssemblyConfiguration = " Release"
Original file line number Diff line number Diff line change @@ -5,15 +5,15 @@ open System.Reflection
5
5
[<assembly: AssemblyTitleAttribute( " FSharp.Plotly" ) >]
6
6
[<assembly: AssemblyProductAttribute( " FSharp.Plotly" ) >]
7
7
[<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 " ) >]
10
10
[<assembly: AssemblyConfigurationAttribute( " Release" ) >]
11
11
do ()
12
12
13
13
module internal AssemblyVersionInformation =
14
14
let [<Literal>] AssemblyTitle = " FSharp.Plotly"
15
15
let [<Literal>] AssemblyProduct = " FSharp.Plotly"
16
16
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 "
19
19
let [<Literal>] AssemblyConfiguration = " Release"
You can’t perform that action at this time.
0 commit comments