Skip to content

Commit 099526c

Browse files
Update release notes for .NET 8.0 and 9.0 changes
- Updated README.md to reflect changes in release notes for versions 8.0 and 9.0. - Changed all `.ConfigureAwait(true)` to `.ConfigureAwait(false)` in version 8.0 for best practices. - Added `Open.Database.Extensions.MSSqlClient` for `Microsoft.Data.SqlClient` support. - Updated target framework to include .NET 8.0 for improved compilation and performance. - Discontinued Open.Database.Extensions meta-package in version 9.0 and added .NET 9.0 to targets. - Included implementation of .NET 8 and 9 specific features and performed significant cleanup and simplification.
1 parent 2bd082d commit 099526c

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

README.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,14 @@ public static bool TryTransaction()
136136

137137
## 8.0 Release Notes
138138

139-
- All `.ConfigureAwait(true)` are now `.ConfigureAwait(false)` as they should be. The caller will need to `.ConfigureAwait(true)` if they need to resume on the calling context.
140-
- Added `Open.Database.Extensions.MSSqlClient` for `Microsoft.Data.SqlClient` support.
141-
- .NET 8.0 added to targets to ensure potential compliation and performance improvements are available.
142-
- Improved nullable integrity.
139+
- All `.ConfigureAwait(true)` are now `.ConfigureAwait(false)` as they should be. The caller will need to `.ConfigureAwait(true)` if they need to resume on the calling context.
140+
- Added `Open.Database.Extensions.MSSqlClient` for `Microsoft.Data.SqlClient` support.
141+
- .NET 8.0 added to targets to ensure potential compliation and performance improvements are available.
142+
- Improved nullable integrity.
143+
144+
## 9.0 Release Notes
145+
146+
- Open.Database.Extensions meta-package is discontinued.
147+
- .NET 9.0 added to targets to ensure potential compilation and performance improvements are available.
148+
- Impelmented some .NET 8 and 9 specific features.
149+
- Significant cleanup and simplifcation where possible.

0 commit comments

Comments
 (0)