File tree Expand file tree Collapse file tree 7 files changed +32
-16
lines changed
XPlot.GoogleCharts.Deedle Expand file tree Collapse file tree 7 files changed +32
-16
lines changed Original file line number Diff line number Diff line change 1
- ### 1.4.1 - July 30, 2016
1
+ ### 1.4.2-rc001 - September 25, 2016
2
+ * Rationalise the GoogleChart and PlotlyChart types
3
+ * Rationalise the pipeline style helpers
4
+
5
+ ### 1.4.1 - July 30, 2016
2
6
* Documentation updates
3
7
* Plotly API mappings fixes
4
8
Original file line number Diff line number Diff line change @@ -151,11 +151,20 @@ Target "SourceLink" (fun _ ->
151
151
152
152
Target " NuGet" ( fun _ ->
153
153
Paket.Pack( fun p ->
154
+ // NuGet (fun p ->
154
155
{ p with
156
+ // Authors = authors
155
157
OutputPath = " bin"
156
158
Version = release.NugetVersion
157
159
ReleaseNotes = toLines release.Notes
160
+ // Dependencies =
161
+ // [
162
+ // "Google.DataTable.Net.Wrapper", GetPackageVersion "packages" "Google.DataTable.Net.Wrapper"
163
+ // "Newtonsoft.Json", GetPackageVersion "packages" "Newtonsoft.Json"
164
+ // ]
165
+
158
166
})
167
+ // ("xplot.nuspec")
159
168
)
160
169
161
170
Target " PublishNuget" ( fun _ ->
Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ let createFsiEvaluator root output (floatFormat:string) =
141
141
| :? GoogleCharts.GoogleChart as ch ->
142
142
// Just return the inline HTML of a Google chart
143
143
let ch = ch |> XPlot.GoogleCharts.Chart.WithSize( 700 , 400 )
144
- Some [ InlineBlock ch.InlineHtml ]
144
+ Some [ InlineBlock <| ch.GetInlineHtml () ]
145
145
146
146
| :? Plotly.PlotlyChart as chart ->
147
147
// Just return the inline HTML for a Plotly chart
Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ open System.Reflection
4
4
[<assembly: AssemblyTitleAttribute( " XPlot.GoogleCharts.Deedle" ) >]
5
5
[<assembly: AssemblyProductAttribute( " XPlot" ) >]
6
6
[<assembly: AssemblyDescriptionAttribute( " Data visualization library for F#" ) >]
7
- [<assembly: AssemblyVersionAttribute( " 1.4.1 " ) >]
8
- [<assembly: AssemblyFileVersionAttribute( " 1.4.1 " ) >]
7
+ [<assembly: AssemblyVersionAttribute( " 1.4.2 " ) >]
8
+ [<assembly: AssemblyFileVersionAttribute( " 1.4.2 " ) >]
9
9
do ()
10
10
11
11
module internal AssemblyVersionInformation =
12
- let [<Literal>] Version = " 1.4.1 "
13
- let [<Literal>] InformationalVersion = " 1.4.1 "
12
+ let [<Literal>] Version = " 1.4.2 "
13
+ let [<Literal>] InformationalVersion = " 1.4.2 "
Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ open System.Reflection
4
4
[<assembly: AssemblyTitleAttribute( " XPlot.GoogleCharts" ) >]
5
5
[<assembly: AssemblyProductAttribute( " XPlot" ) >]
6
6
[<assembly: AssemblyDescriptionAttribute( " Data visualization library for F#" ) >]
7
- [<assembly: AssemblyVersionAttribute( " 1.4.1 " ) >]
8
- [<assembly: AssemblyFileVersionAttribute( " 1.4.1 " ) >]
7
+ [<assembly: AssemblyVersionAttribute( " 1.4.2 " ) >]
8
+ [<assembly: AssemblyFileVersionAttribute( " 1.4.2 " ) >]
9
9
do ()
10
10
11
11
module internal AssemblyVersionInformation =
12
- let [<Literal>] Version = " 1.4.1 "
13
- let [<Literal>] InformationalVersion = " 1.4.1 "
12
+ let [<Literal>] Version = " 1.4.2 "
13
+ let [<Literal>] InformationalVersion = " 1.4.2 "
Original file line number Diff line number Diff line change 1
1
type project
2
2
owners
3
- Taha Hachana
3
+ Taha Hachana; Tomas Petricek
4
4
authors
5
- Taha Hachana
5
+ Taha Hachana; Tomas Petricek
6
6
projectUrl
7
7
http://github.com/TahaHachana/XPlot
8
8
iconUrl
@@ -19,3 +19,6 @@ summary
19
19
Data visualization library for F#
20
20
description
21
21
XPlot is a cross-platform data visualization library that supports creating charts using Google Charts and Plotly. The library provides a composable domain specific language for building charts and specifying their properties.
22
+ dependencies
23
+ Google.DataTable.Net.Wrapper ~> CURRENTVERSION
24
+ Newtonsoft.Json ~> CURRENTVERSION
Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ open System.Reflection
4
4
[<assembly: AssemblyTitleAttribute( " XPlot.Plotly" ) >]
5
5
[<assembly: AssemblyProductAttribute( " XPlot" ) >]
6
6
[<assembly: AssemblyDescriptionAttribute( " Data visualization library for F#" ) >]
7
- [<assembly: AssemblyVersionAttribute( " 1.4.1 " ) >]
8
- [<assembly: AssemblyFileVersionAttribute( " 1.4.1 " ) >]
7
+ [<assembly: AssemblyVersionAttribute( " 1.4.2 " ) >]
8
+ [<assembly: AssemblyFileVersionAttribute( " 1.4.2 " ) >]
9
9
do ()
10
10
11
11
module internal AssemblyVersionInformation =
12
- let [<Literal>] Version = " 1.4.1 "
13
- let [<Literal>] InformationalVersion = " 1.4.1 "
12
+ let [<Literal>] Version = " 1.4.2 "
13
+ let [<Literal>] InformationalVersion = " 1.4.2 "
You can’t perform that action at this time.
0 commit comments