Skip to content

Commit

Permalink
Bump version to 1.4.2-rc001
Browse files Browse the repository at this point in the history
  • Loading branch information
TahaHachana committed Sep 25, 2016
1 parent ebf7926 commit b2672dc
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 16 deletions.
6 changes: 5 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
### 1.4.1 - July 30, 2016
### 1.4.2-rc001 - September 25, 2016
* Rationalise the GoogleChart and PlotlyChart types
* Rationalise the pipeline style helpers

### 1.4.1 - July 30, 2016
* Documentation updates
* Plotly API mappings fixes

Expand Down
9 changes: 9 additions & 0 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -151,11 +151,20 @@ Target "SourceLink" (fun _ ->

Target "NuGet" (fun _ ->
Paket.Pack(fun p ->
// NuGet (fun p ->
{ p with
// Authors = authors
OutputPath = "bin"
Version = release.NugetVersion
ReleaseNotes = toLines release.Notes
// Dependencies =
// [
// "Google.DataTable.Net.Wrapper", GetPackageVersion "packages" "Google.DataTable.Net.Wrapper"
// "Newtonsoft.Json", GetPackageVersion "packages" "Newtonsoft.Json"
// ]

})
// ("xplot.nuspec")
)

Target "PublishNuget" (fun _ ->
Expand Down
2 changes: 1 addition & 1 deletion docs/tools/formatters.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ let createFsiEvaluator root output (floatFormat:string) =
| :? GoogleCharts.GoogleChart as ch ->
// Just return the inline HTML of a Google chart
let ch = ch |> XPlot.GoogleCharts.Chart.WithSize(700, 400)
Some [ InlineBlock ch.InlineHtml ]
Some [ InlineBlock <| ch.GetInlineHtml() ]

| :? Plotly.PlotlyChart as chart ->
// Just return the inline HTML for a Plotly chart
Expand Down
8 changes: 4 additions & 4 deletions src/XPlot.GoogleCharts.Deedle/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("XPlot.GoogleCharts.Deedle")>]
[<assembly: AssemblyProductAttribute("XPlot")>]
[<assembly: AssemblyDescriptionAttribute("Data visualization library for F#")>]
[<assembly: AssemblyVersionAttribute("1.4.1")>]
[<assembly: AssemblyFileVersionAttribute("1.4.1")>]
[<assembly: AssemblyVersionAttribute("1.4.2")>]
[<assembly: AssemblyFileVersionAttribute("1.4.2")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] Version = "1.4.1"
let [<Literal>] InformationalVersion = "1.4.1"
let [<Literal>] Version = "1.4.2"
let [<Literal>] InformationalVersion = "1.4.2"
8 changes: 4 additions & 4 deletions src/XPlot.GoogleCharts/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("XPlot.GoogleCharts")>]
[<assembly: AssemblyProductAttribute("XPlot")>]
[<assembly: AssemblyDescriptionAttribute("Data visualization library for F#")>]
[<assembly: AssemblyVersionAttribute("1.4.1")>]
[<assembly: AssemblyFileVersionAttribute("1.4.1")>]
[<assembly: AssemblyVersionAttribute("1.4.2")>]
[<assembly: AssemblyFileVersionAttribute("1.4.2")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] Version = "1.4.1"
let [<Literal>] InformationalVersion = "1.4.1"
let [<Literal>] Version = "1.4.2"
let [<Literal>] InformationalVersion = "1.4.2"
7 changes: 5 additions & 2 deletions src/XPlot.GoogleCharts/paket.template
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
type project
owners
Taha Hachana
Taha Hachana; Tomas Petricek
authors
Taha Hachana
Taha Hachana; Tomas Petricek
projectUrl
http://github.com/TahaHachana/XPlot
iconUrl
Expand All @@ -19,3 +19,6 @@ summary
Data visualization library for F#
description
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.
dependencies
Google.DataTable.Net.Wrapper ~> CURRENTVERSION
Newtonsoft.Json ~> CURRENTVERSION
8 changes: 4 additions & 4 deletions src/XPlot.Plotly/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("XPlot.Plotly")>]
[<assembly: AssemblyProductAttribute("XPlot")>]
[<assembly: AssemblyDescriptionAttribute("Data visualization library for F#")>]
[<assembly: AssemblyVersionAttribute("1.4.1")>]
[<assembly: AssemblyFileVersionAttribute("1.4.1")>]
[<assembly: AssemblyVersionAttribute("1.4.2")>]
[<assembly: AssemblyFileVersionAttribute("1.4.2")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] Version = "1.4.1"
let [<Literal>] InformationalVersion = "1.4.1"
let [<Literal>] Version = "1.4.2"
let [<Literal>] InformationalVersion = "1.4.2"

0 comments on commit b2672dc

Please sign in to comment.