Skip to content

Commit f58b26e

Browse files
* Acknowledgement for Jetbrains in README.md (sponsoring their .net tooling for maintenance of this project)
* release note / fix for #340 * version number
1 parent 4450560 commit f58b26e

4 files changed

Lines changed: 15 additions & 8 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,3 +103,4 @@ More information can be found in the [documentation](http://fsprojects.github.io
103103

104104
The default maintainer account for projects under "fsprojects" is [@fsprojectsgit](https://github.com/fsprojectsgit) - F# Community Project Incubation Space (repo management)
105105

106+
Thanks Jetbrains for their open source license program and providing their tool.

RELEASE_NOTES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
#### 2.0.4 May 27, 2019
2+
3+
* Issue #340 Some primitive types such as Guid weren't supported as output parameters.
4+
5+
Contributor(s): Jérémie Chassaing (https://github.com/thinkbeforecoding)
6+
17
#### 2.0.3 April 15, 2019
28
* Issue #332 Invalidate SqlFile type when referenced SQL file is modified.
39

src/SqlClient.DesignTime/AssemblyInfo.fs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ open System.Runtime.CompilerServices
66
[<assembly: AssemblyTitleAttribute("SqlClient.DesignTime")>]
77
[<assembly: AssemblyProductAttribute("FSharp.Data.SqlClient.DesignTime")>]
88
[<assembly: AssemblyDescriptionAttribute("SqlClient F# type providers")>]
9-
[<assembly: AssemblyVersionAttribute("2.0.2")>]
10-
[<assembly: AssemblyFileVersionAttribute("2.0.2")>]
9+
[<assembly: AssemblyVersionAttribute("2.0.4")>]
10+
[<assembly: AssemblyFileVersionAttribute("2.0.4")>]
1111
[<assembly: InternalsVisibleToAttribute("SqlClient.Tests")>]
1212
do ()
1313

1414
module internal AssemblyVersionInformation =
1515
let [<Literal>] AssemblyTitle = "SqlClient.DesignTime"
1616
let [<Literal>] AssemblyProduct = "FSharp.Data.SqlClient.DesignTime"
1717
let [<Literal>] AssemblyDescription = "SqlClient F# type providers"
18-
let [<Literal>] AssemblyVersion = "2.0.2"
19-
let [<Literal>] AssemblyFileVersion = "2.0.2"
18+
let [<Literal>] AssemblyVersion = "2.0.4"
19+
let [<Literal>] AssemblyFileVersion = "2.0.4"
2020
let [<Literal>] InternalsVisibleTo = "SqlClient.Tests"

src/SqlClient/AssemblyInfo.fs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ open System.Runtime.CompilerServices
66
[<assembly: AssemblyTitleAttribute("SqlClient")>]
77
[<assembly: AssemblyProductAttribute("FSharp.Data.SqlClient")>]
88
[<assembly: AssemblyDescriptionAttribute("SqlClient F# type providers")>]
9-
[<assembly: AssemblyVersionAttribute("2.0.2")>]
10-
[<assembly: AssemblyFileVersionAttribute("2.0.2")>]
9+
[<assembly: AssemblyVersionAttribute("2.0.4")>]
10+
[<assembly: AssemblyFileVersionAttribute("2.0.4")>]
1111
[<assembly: InternalsVisibleToAttribute("SqlClient.Tests")>]
1212
do ()
1313

1414
module internal AssemblyVersionInformation =
1515
let [<Literal>] AssemblyTitle = "SqlClient"
1616
let [<Literal>] AssemblyProduct = "FSharp.Data.SqlClient"
1717
let [<Literal>] AssemblyDescription = "SqlClient F# type providers"
18-
let [<Literal>] AssemblyVersion = "2.0.2"
19-
let [<Literal>] AssemblyFileVersion = "2.0.2"
18+
let [<Literal>] AssemblyVersion = "2.0.4"
19+
let [<Literal>] AssemblyFileVersion = "2.0.4"
2020
let [<Literal>] InternalsVisibleTo = "SqlClient.Tests"

0 commit comments

Comments
 (0)