Skip to content

Commit

Permalink
Release 0.91.1
Browse files Browse the repository at this point in the history
  • Loading branch information
simra committed Aug 11, 2017
1 parent 54647e8 commit 2f12634
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
4 changes: 4 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#### 0.91.1 11.08.2017
* Fix #133
* Add Candlestick charts. #131

#### 0.91.0 07.06.2017
* Update packages
* Use paket to build nuget packages
Expand Down
2 changes: 1 addition & 1 deletion docs/content/ReferencingTheLibrary.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ F# Charting is most often used from F# scripts. To use the library
in a script, load the `FSharp.Charting.fsx` file, for example from the NuGet package:
*)

// On Mac OSX use packages/FSharp.Charting.Gtk.0.91.0/FSharp.Charting.Gtk.fsx
// On Mac OSX use packages/FSharp.Charting.Gtk.0.91.1/FSharp.Charting.Gtk.fsx
#load "packages/FSharp.Charting/FSharp.Charting.fsx"
(**
You can now create a chart:
Expand Down
8 changes: 4 additions & 4 deletions src/AssemblyInfo.Gtk.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("FSharp.Charting.Gtk")>]
[<assembly: AssemblyProductAttribute("FSharp.Charting.Gtk")>]
[<assembly: AssemblyDescriptionAttribute("A Charting Library for F# (Gtk, cross-platform)")>]
[<assembly: AssemblyVersionAttribute("0.91.0")>]
[<assembly: AssemblyFileVersionAttribute("0.91.0")>]
[<assembly: AssemblyVersionAttribute("0.91.1")>]
[<assembly: AssemblyFileVersionAttribute("0.91.1")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "FSharp.Charting.Gtk"
let [<Literal>] AssemblyProduct = "FSharp.Charting.Gtk"
let [<Literal>] AssemblyDescription = "A Charting Library for F# (Gtk, cross-platform)"
let [<Literal>] AssemblyVersion = "0.91.0"
let [<Literal>] AssemblyFileVersion = "0.91.0"
let [<Literal>] AssemblyVersion = "0.91.1"
let [<Literal>] AssemblyFileVersion = "0.91.1"
8 changes: 4 additions & 4 deletions src/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("FSharp.Charting")>]
[<assembly: AssemblyProductAttribute("FSharp.Charting")>]
[<assembly: AssemblyDescriptionAttribute("A Charting Library for F#")>]
[<assembly: AssemblyVersionAttribute("0.91.0")>]
[<assembly: AssemblyFileVersionAttribute("0.91.0")>]
[<assembly: AssemblyVersionAttribute("0.91.1")>]
[<assembly: AssemblyFileVersionAttribute("0.91.1")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "FSharp.Charting"
let [<Literal>] AssemblyProduct = "FSharp.Charting"
let [<Literal>] AssemblyDescription = "A Charting Library for F#"
let [<Literal>] AssemblyVersion = "0.91.0"
let [<Literal>] AssemblyFileVersion = "0.91.0"
let [<Literal>] AssemblyVersion = "0.91.1"
let [<Literal>] AssemblyFileVersion = "0.91.1"

0 comments on commit 2f12634

Please sign in to comment.