Skip to content

Commit

Permalink
release 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zyzhu committed Jan 17, 2023
1 parent 4436511 commit 93c624e
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 14 deletions.
4 changes: 4 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release Notes

## 3.0.0 - 2023-01-17

- Fix missing value in Stats.cov[552](https://github.com/fslaborg/Deedle/pull/552)

## 3.0.0-beta.1 - 2022-06-22

- Add Deedle.Interactive package for formatting in dotnet notebooks
Expand Down
4 changes: 2 additions & 2 deletions src/Deedle.Excel/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ open System.Reflection
[<assembly: AssemblyProductAttribute("Deedle.Excel")>]
[<assembly: AssemblyDescriptionAttribute("Deedle integration with Excel")>]
[<assembly: AssemblyVersionAttribute("3.0.0")>]
[<assembly: AssemblyInformationalVersionAttribute("3.0.0-beta.1")>]
[<assembly: AssemblyInformationalVersionAttribute("3.0.0")>]
[<assembly: AssemblyFileVersionAttribute("3.0.0")>]
do ()

Expand All @@ -15,5 +15,5 @@ module internal AssemblyVersionInformation =
let [<Literal>] AssemblyProduct = "Deedle.Excel"
let [<Literal>] AssemblyDescription = "Deedle integration with Excel"
let [<Literal>] AssemblyVersion = "3.0.0"
let [<Literal>] AssemblyInformationalVersion = "3.0.0-beta.1"
let [<Literal>] AssemblyInformationalVersion = "3.0.0"
let [<Literal>] AssemblyFileVersion = "3.0.0"
16 changes: 8 additions & 8 deletions src/Deedle.Interactive/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
namespace System
open System.Reflection

[<assembly: AssemblyTitleAttribute("Deedle.RPlugin")>]
[<assembly: AssemblyProductAttribute("Deedle.RPlugin")>]
[<assembly: AssemblyDescriptionAttribute("Easy to use .NET library for data manipulation with R project integration")>]
[<assembly: AssemblyTitleAttribute("Deedle.Interactive")>]
[<assembly: AssemblyProductAttribute("Deedle.Interactive")>]
[<assembly: AssemblyDescriptionAttribute("Deedle Formatting extensions for dotnet interactive")>]
[<assembly: AssemblyVersionAttribute("3.0.0")>]
[<assembly: AssemblyInformationalVersionAttribute("3.0.0-beta.1")>]
[<assembly: AssemblyInformationalVersionAttribute("3.0.0")>]
[<assembly: AssemblyFileVersionAttribute("3.0.0")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "Deedle.RPlugin"
let [<Literal>] AssemblyProduct = "Deedle.RPlugin"
let [<Literal>] AssemblyDescription = "Easy to use .NET library for data manipulation with R project integration"
let [<Literal>] AssemblyTitle = "Deedle.Interactive"
let [<Literal>] AssemblyProduct = "Deedle.Interactive"
let [<Literal>] AssemblyDescription = "Deedle Formatting extensions for dotnet interactive"
let [<Literal>] AssemblyVersion = "3.0.0"
let [<Literal>] AssemblyInformationalVersion = "3.0.0-beta.1"
let [<Literal>] AssemblyInformationalVersion = "3.0.0"
let [<Literal>] AssemblyFileVersion = "3.0.0"
4 changes: 2 additions & 2 deletions src/Deedle.Math/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ open System.Reflection
[<assembly: AssemblyProductAttribute("Deedle.Math")>]
[<assembly: AssemblyDescriptionAttribute("Deedle interop with Math.Net")>]
[<assembly: AssemblyVersionAttribute("3.0.0")>]
[<assembly: AssemblyInformationalVersionAttribute("3.0.0-beta.1")>]
[<assembly: AssemblyInformationalVersionAttribute("3.0.0")>]
[<assembly: AssemblyFileVersionAttribute("3.0.0")>]
do ()

Expand All @@ -15,5 +15,5 @@ module internal AssemblyVersionInformation =
let [<Literal>] AssemblyProduct = "Deedle.Math"
let [<Literal>] AssemblyDescription = "Deedle interop with Math.Net"
let [<Literal>] AssemblyVersion = "3.0.0"
let [<Literal>] AssemblyInformationalVersion = "3.0.0-beta.1"
let [<Literal>] AssemblyInformationalVersion = "3.0.0"
let [<Literal>] AssemblyFileVersion = "3.0.0"
4 changes: 2 additions & 2 deletions src/Deedle/Common/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ open System.Reflection
[<assembly: AssemblyProductAttribute("Deedle")>]
[<assembly: AssemblyDescriptionAttribute("Easy to use .NET library for data manipulation and scientific programming")>]
[<assembly: AssemblyVersionAttribute("3.0.0")>]
[<assembly: AssemblyInformationalVersionAttribute("3.0.0-beta.1")>]
[<assembly: AssemblyInformationalVersionAttribute("3.0.0")>]
[<assembly: AssemblyFileVersionAttribute("3.0.0")>]
do ()

Expand All @@ -15,5 +15,5 @@ module internal AssemblyVersionInformation =
let [<Literal>] AssemblyProduct = "Deedle"
let [<Literal>] AssemblyDescription = "Easy to use .NET library for data manipulation and scientific programming"
let [<Literal>] AssemblyVersion = "3.0.0"
let [<Literal>] AssemblyInformationalVersion = "3.0.0-beta.1"
let [<Literal>] AssemblyInformationalVersion = "3.0.0"
let [<Literal>] AssemblyFileVersion = "3.0.0"

0 comments on commit 93c624e

Please sign in to comment.