Skip to content

Commit 76d1f17

Browse files
committed
Release 0.6.0.
1 parent 5f68179 commit 76d1f17

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

docs/VersionHistory.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,19 @@
55
* The behaviour of cancellation is not well-defined in this release; cancelling a query
66
may leave the `MySqlConnection` in an unusable state.
77
* Not all MySQL data types are supported.
8-
* Many `MySql.Data` connection string settings are not supported by this library.
9-
* Compression is not supported.
8+
* Many `MySql.Data` connection string settings are not supported by this library. See
9+
[Connection Options](https://mysql-net.github.io/MySqlConnector/connection-options/) for a list
10+
of supported options.
1011
* Stored Procedures aren't supported.
1112
* Only the "`mysql_native_password`" authentication plugin is supported.
1213

1314
## Release Notes
1415

16+
### 0.6.0
17+
18+
* Implement `UseCompression` connection string option: [#31](https://github.com/mysql-net/MySqlConnector/issues/31).
19+
* Add support for Unix domain sockets: [#118](https://github.com/mysql-net/MySqlConnector/issues/118).
20+
1521
### 0.5.0
1622

1723
* Implement `UseAffectedRows` connection string option. (Note that the default value is `true`, unlike `MySql.Data`.)

src/MySqlConnector/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.5.0",
2+
"version": "0.6.0",
33
"title": "Async MySQL Connector",
44
"description": "A fully async MySQL ADO.NET provider for .NET and .NET Core",
55
"copyright": "Copyright 2016 Bradley Grainger",
@@ -9,7 +9,7 @@
99
"packOptions": {
1010
"owners": [ "bgrainger" ],
1111
"tags": [ "mysql", "async", "ado.net", "database", "netcore" ],
12-
"releaseNotes": "Implement UseAffectedRows. (GitHub issue #104)",
12+
"releaseNotes": "Add support for Compression and Unix domain sockets. (GitHub issues #31, #118)",
1313
"licenseUrl": "https://opensource.org/licenses/MIT",
1414
"projectUrl": "https://github.com/mysql-net/MySqlConnector",
1515
"repository": {

0 commit comments

Comments
 (0)