Skip to content

Commit

Permalink
* Acknowledgement for Jetbrains in README.md (sponsoring their .net t…
Browse files Browse the repository at this point in the history
…ooling for maintenance of this project)

* release note / fix for #340
* version number
  • Loading branch information
smoothdeveloper committed May 27, 2019
1 parent 4450560 commit f58b26e
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 8 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,3 +103,4 @@ More information can be found in the [documentation](http://fsprojects.github.io

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

Thanks Jetbrains for their open source license program and providing their tool.
6 changes: 6 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
#### 2.0.4 May 27, 2019

* Issue #340 Some primitive types such as Guid weren't supported as output parameters.

Contributor(s): Jérémie Chassaing (https://github.com/thinkbeforecoding)

#### 2.0.3 April 15, 2019
* Issue #332 Invalidate SqlFile type when referenced SQL file is modified.

Expand Down
8 changes: 4 additions & 4 deletions src/SqlClient.DesignTime/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ open System.Runtime.CompilerServices
[<assembly: AssemblyTitleAttribute("SqlClient.DesignTime")>]
[<assembly: AssemblyProductAttribute("FSharp.Data.SqlClient.DesignTime")>]
[<assembly: AssemblyDescriptionAttribute("SqlClient F# type providers")>]
[<assembly: AssemblyVersionAttribute("2.0.2")>]
[<assembly: AssemblyFileVersionAttribute("2.0.2")>]
[<assembly: AssemblyVersionAttribute("2.0.4")>]
[<assembly: AssemblyFileVersionAttribute("2.0.4")>]
[<assembly: InternalsVisibleToAttribute("SqlClient.Tests")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "SqlClient.DesignTime"
let [<Literal>] AssemblyProduct = "FSharp.Data.SqlClient.DesignTime"
let [<Literal>] AssemblyDescription = "SqlClient F# type providers"
let [<Literal>] AssemblyVersion = "2.0.2"
let [<Literal>] AssemblyFileVersion = "2.0.2"
let [<Literal>] AssemblyVersion = "2.0.4"
let [<Literal>] AssemblyFileVersion = "2.0.4"
let [<Literal>] InternalsVisibleTo = "SqlClient.Tests"
8 changes: 4 additions & 4 deletions src/SqlClient/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ open System.Runtime.CompilerServices
[<assembly: AssemblyTitleAttribute("SqlClient")>]
[<assembly: AssemblyProductAttribute("FSharp.Data.SqlClient")>]
[<assembly: AssemblyDescriptionAttribute("SqlClient F# type providers")>]
[<assembly: AssemblyVersionAttribute("2.0.2")>]
[<assembly: AssemblyFileVersionAttribute("2.0.2")>]
[<assembly: AssemblyVersionAttribute("2.0.4")>]
[<assembly: AssemblyFileVersionAttribute("2.0.4")>]
[<assembly: InternalsVisibleToAttribute("SqlClient.Tests")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "SqlClient"
let [<Literal>] AssemblyProduct = "FSharp.Data.SqlClient"
let [<Literal>] AssemblyDescription = "SqlClient F# type providers"
let [<Literal>] AssemblyVersion = "2.0.2"
let [<Literal>] AssemblyFileVersion = "2.0.2"
let [<Literal>] AssemblyVersion = "2.0.4"
let [<Literal>] AssemblyFileVersion = "2.0.4"
let [<Literal>] InternalsVisibleTo = "SqlClient.Tests"

0 comments on commit f58b26e

Please sign in to comment.