Skip to content

Commit 995a318

Browse files
(minor) adjustments for 2.1.2 release
1 parent b2a6bd2 commit 995a318

File tree

4 files changed

+23
-12
lines changed

4 files changed

+23
-12
lines changed

RELEASE_NOTES.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
#### 2.1.2 May 08, 2022
2+
3+
* Issue #420 fix "TVP Column Ordering is incorrect as of version 2.1.0"
4+
* Contributor: Suou Ryuu (https://github.com/suou-ryuu)
5+
6+
#### 2.1.1-beta0 April 07, 2022
7+
8+
* Issue #413 fix "Fixed length binary columns in user defined table types fail when constructed"
9+
* Breaking change: removal of net40 support
10+
* Contributor: Suou Ryuu (https://github.com/suou-ryuu)
11+
112
#### 2.1.0-beta1 December 17, 2020
213

314
* fix reading from app.config vs App.config on case sensitive file system

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.5")>]
10-
[<assembly: AssemblyFileVersionAttribute("2.0.5")>]
9+
[<assembly: AssemblyVersionAttribute("2.1.2")>]
10+
[<assembly: AssemblyFileVersionAttribute("2.1.2")>]
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.5"
19-
let [<Literal>] AssemblyFileVersion = "2.0.5"
18+
let [<Literal>] AssemblyVersion = "2.1.2"
19+
let [<Literal>] AssemblyFileVersion = "2.1.2"
2020
let [<Literal>] InternalsVisibleTo = "SqlClient.Tests"

src/SqlClient.DesignTime/SqlClientExtensions.fs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -525,11 +525,11 @@ from
525525
select
526526
c.name, c.system_type_id, c.user_type_id, c.is_nullable, c.max_length, c.is_identity, c.is_computed, tt.user_type_id table_type_user_type_id, c.[precision], c.scale
527527
from sys.table_types as tt
528-
inner join sys.columns as c on tt.type_table_object_id = c.object_id
528+
inner join sys.columns as c on tt.type_table_object_id = c.object_id
529529
order by
530-
c.column_id
531-
, tt.user_type_id
532-
, c.user_type_id
530+
c.column_id
531+
, tt.user_type_id
532+
, c.user_type_id
533533
"""
534534
, this)
535535
use reader = cmd.ExecuteReader()

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.5")>]
10-
[<assembly: AssemblyFileVersionAttribute("2.0.5")>]
9+
[<assembly: AssemblyVersionAttribute("2.1.2")>]
10+
[<assembly: AssemblyFileVersionAttribute("2.1.2")>]
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.5"
19-
let [<Literal>] AssemblyFileVersion = "2.0.5"
18+
let [<Literal>] AssemblyVersion = "2.1.2"
19+
let [<Literal>] AssemblyFileVersion = "2.1.2"
2020
let [<Literal>] InternalsVisibleTo = "SqlClient.Tests"

0 commit comments

Comments
 (0)