diff --git a/Changes b/Changes index 058daac..e888e02 100644 --- a/Changes +++ b/Changes @@ -2,6 +2,9 @@ Revision history for perl distribution CellBIS-SQL-Abstract {{$NEXT}} +1.5 2021-04-09 05:29:56+08:00 Asia/Makassar + - fix missing Mojo::SQLite on Makefile.PL + 1.4 2021-04-09 01:02:00+08:00 Asia/Makassar - fix missing Mojo::SQLite #4 - eserte diff --git a/Makefile.PL b/Makefile.PL index d9490b6..6f76d46 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -25,7 +25,7 @@ my %WriteMakefileArgs = ( "Mojolicious" => 0, "Scalar::Util" => 0 }, - "VERSION" => "1.5", + "VERSION" => "1.6", "test" => { "TESTS" => "t/*.t t/02-query/*.t t/03-additional/mysql/*.t t/03-additional/sqlite/*.t" } diff --git a/README.md b/README.md index 120ce34..381a7b1 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ or [DBI](https://metacpan.org/pod/DBI). ## How to Install : From Source : ```bash -git clone -b v1.4 git@github.com:CellBIS/CellBIS-SQL-Abstract.git +git clone -b v1.5 git@github.com:CellBIS/CellBIS-SQL-Abstract.git perl Makefile.PL make && make test make install && make clean diff --git a/lib/CellBIS/SQL/Abstract.pm b/lib/CellBIS/SQL/Abstract.pm index 9e0ad27..e1c27ce 100644 --- a/lib/CellBIS/SQL/Abstract.pm +++ b/lib/CellBIS/SQL/Abstract.pm @@ -8,7 +8,7 @@ use CellBIS::SQL::Abstract::Util; use CellBIS::SQL::Abstract::Table; # ABSTRACT: SQL Query Generator -our $VERSION = '1.5'; +our $VERSION = '1.6'; has 'QueryUtil' => sub { state $qu = CellBIS::SQL::Abstract::Util->new }; has 'db_type' => 'mariadb';