Skip to content

Commit

Permalink
Version 5.002
Browse files Browse the repository at this point in the history
  • Loading branch information
dveeden committed Oct 24, 2023
1 parent 4956108 commit d52d3bd
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/Bundle/DBD/mysql.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Bundle::DBD::mysql;
use strict;
use warnings;

our $VERSION = '5.001';
our $VERSION = '5.002';

1;

Expand Down
2 changes: 1 addition & 1 deletion lib/DBD/mysql.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit d52d3bd

Please sign in to comment.