diff --git a/Changes b/Changes index 61897a08..5dd0e0ab 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,15 @@ +2024-11-11 Daniël van Eeden, DBI/DBD community (5.010) +* doc: reorder mentioned sth attributes +* doc: POD for ParamValues sth attribute +* set index offset for when gh#447 is fixed +* tests for $sth->{ParamValues} attrib (gh #447) +* Make ParamValues follow expectations +* it seems catalogs *are* now supported - make statistics_info use them +* Warn that MariaDB's client library does not work +* Carefully compare library version numbers +* Correct email address +* correct keyword name MEDIUMBLOB + 2024-09-19 Daniël van Eeden, DBI/DBD community (5.009) * Cleanup obsolete mysql_errmsg and mysql_stats * fix some queries with columns beginning with limit would fail diff --git a/MANIFEST b/MANIFEST index 62204dc6..2e16bd3c 100644 --- a/MANIFEST +++ b/MANIFEST @@ -78,6 +78,7 @@ t/99compression.t t/99_bug_server_prepare_blob_null.t t/gh352.t t/gh360.t +t/gh447-paramvalues.t t/lib.pl t/manifest.t t/pod.t diff --git a/lib/DBD/mysql.pm b/lib/DBD/mysql.pm index 04c9fa94..d93df2ae 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.009'; +our $VERSION = '5.010'; bootstrap DBD::mysql $VERSION;