Skip to content

Commit d52d3bd

Browse files
committed
Version 5.002
1 parent 4956108 commit d52d3bd

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

Changes

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
2023-10-24 Daniël van Eeden, DBI/DBD community (5.002)
2+
* Add support for compression algorighm selection (#372)
3+
* Correct handling of mysql_enable_utf8mb4 (#363)
4+
* tests: Remove have_transactions usage from 50commit.t
5+
* Makefile: Clearly report that MySQL 8.x is needed and do some cleanup
6+
* add DBD::mysql::client_version() to have the client version without DB connections
7+
* Update version test for v5.x
8+
19
2023-10-04 Daniël van Eeden, DBI/DBD community (5.001)
210
* Only support MySQL 8.x as MySQL 5.7 is going EOL soon
311
* Remove use of MYSQL_OPT_RECONNECT

lib/Bundle/DBD/mysql.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package Bundle::DBD::mysql;
33
use strict;
44
use warnings;
55

6-
our $VERSION = '5.001';
6+
our $VERSION = '5.002';
77

88
1;
99

lib/DBD/mysql.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ our @ISA = qw(DynaLoader);
1313
# SQL_DRIVER_VER is formatted as dd.dd.dddd
1414
# for version 5.x please switch to 5.00(_00) version numbering
1515
# keep $VERSION in Bundle/DBD/mysql.pm in sync
16-
our $VERSION = '5.001';
16+
our $VERSION = '5.002';
1717

1818
bootstrap DBD::mysql $VERSION;
1919

0 commit comments

Comments
 (0)