Skip to content

Commit b2672dc

Browse files
committed
Bump version to 1.4.2-rc001
1 parent ebf7926 commit b2672dc

File tree

7 files changed

+32
-16
lines changed

7 files changed

+32
-16
lines changed

RELEASE_NOTES.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
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
26
* Documentation updates
37
* Plotly API mappings fixes
48

build.fsx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,11 +151,20 @@ Target "SourceLink" (fun _ ->
151151

152152
Target "NuGet" (fun _ ->
153153
Paket.Pack(fun p ->
154+
// NuGet (fun p ->
154155
{ p with
156+
// Authors = authors
155157
OutputPath = "bin"
156158
Version = release.NugetVersion
157159
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+
158166
})
167+
// ("xplot.nuspec")
159168
)
160169

161170
Target "PublishNuget" (fun _ ->

docs/tools/formatters.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ let createFsiEvaluator root output (floatFormat:string) =
141141
| :? GoogleCharts.GoogleChart as ch ->
142142
// Just return the inline HTML of a Google chart
143143
let ch = ch |> XPlot.GoogleCharts.Chart.WithSize(700, 400)
144-
Some [ InlineBlock ch.InlineHtml ]
144+
Some [ InlineBlock <| ch.GetInlineHtml() ]
145145

146146
| :? Plotly.PlotlyChart as chart ->
147147
// Just return the inline HTML for a Plotly chart

src/XPlot.GoogleCharts.Deedle/AssemblyInfo.fs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ open System.Reflection
44
[<assembly: AssemblyTitleAttribute("XPlot.GoogleCharts.Deedle")>]
55
[<assembly: AssemblyProductAttribute("XPlot")>]
66
[<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")>]
99
do ()
1010

1111
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"

src/XPlot.GoogleCharts/AssemblyInfo.fs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ open System.Reflection
44
[<assembly: AssemblyTitleAttribute("XPlot.GoogleCharts")>]
55
[<assembly: AssemblyProductAttribute("XPlot")>]
66
[<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")>]
99
do ()
1010

1111
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"

src/XPlot.GoogleCharts/paket.template

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
type project
22
owners
3-
Taha Hachana
3+
Taha Hachana; Tomas Petricek
44
authors
5-
Taha Hachana
5+
Taha Hachana; Tomas Petricek
66
projectUrl
77
http://github.com/TahaHachana/XPlot
88
iconUrl
@@ -19,3 +19,6 @@ summary
1919
Data visualization library for F#
2020
description
2121
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

src/XPlot.Plotly/AssemblyInfo.fs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ open System.Reflection
44
[<assembly: AssemblyTitleAttribute("XPlot.Plotly")>]
55
[<assembly: AssemblyProductAttribute("XPlot")>]
66
[<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")>]
99
do ()
1010

1111
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"

0 commit comments

Comments
 (0)