diff --git a/Changes b/Changes index baded3e5..998e38c1 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,11 @@ +2023-10-24 Daniël van Eeden, DBI/DBD community (5.002) +* Add support for compression algorighm selection (#372) +* Correct handling of mysql_enable_utf8mb4 (#363) +* tests: Remove have_transactions usage from 50commit.t +* Makefile: Clearly report that MySQL 8.x is needed and do some cleanup +* add DBD::mysql::client_version() to have the client version without DB connections +* Update version test for v5.x + 2023-10-04 Daniël van Eeden, DBI/DBD community (5.001) * Only support MySQL 8.x as MySQL 5.7 is going EOL soon * Remove use of MYSQL_OPT_RECONNECT diff --git a/lib/Bundle/DBD/mysql.pm b/lib/Bundle/DBD/mysql.pm index 55bbaa00..204254c0 100644 --- a/lib/Bundle/DBD/mysql.pm +++ b/lib/Bundle/DBD/mysql.pm @@ -3,7 +3,7 @@ package Bundle::DBD::mysql; use strict; use warnings; -our $VERSION = '5.001'; +our $VERSION = '5.002'; 1; diff --git a/lib/DBD/mysql.pm b/lib/DBD/mysql.pm index eccda1cd..993caef0 100644 --- a/lib/DBD/mysql.pm +++ b/lib/DBD/mysql.pm @@ -13,7 +13,7 @@ our @ISA = qw(DynaLoader); # SQL_DRIVER_VER is formatted as dd.dd.dddd # for version 5.x please switch to 5.00(_00) version numbering # keep $VERSION in Bundle/DBD/mysql.pm in sync -our $VERSION = '5.001'; +our $VERSION = '5.002'; bootstrap DBD::mysql $VERSION;