diff --git a/debian/changelog b/debian/changelog index e76640f..3d35710 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +domframework (0.29-1) testing; urgency=low + * file : add scandirNotSorted function + * cli : change the directory as soon as the cli object is created, allow to + check if a relative path is available in next line + * authentication : allow to define a specific logging function instead using + the trigger_error + -- Dominique Fournier Wed, 03 Aug 2016 13:42:57 +0100 + domframework (0.28-1) testing; urgency=low * dblayer : check if the table name is defined before using it * dblayer : check if the PDO Driver is installed in PHP before using it diff --git a/debian/makePackageDebian b/debian/makePackageDebian index 93ecf2e..8a9c889 100755 --- a/debian/makePackageDebian +++ b/debian/makePackageDebian @@ -1,6 +1,6 @@ #!/bin/bash -x # Think about changing the version.php file !! -VERSION="0.28" +VERSION="0.29" PACKAGE="domframework" rm -rf /tmp/${PACKAGE}pack mkdir /tmp/${PACKAGE}pack diff --git a/version.php b/version.php index b9d8d48..bfa2b83 100644 --- a/version.php +++ b/version.php @@ -11,4 +11,4 @@ if (!defined ("DOMFRAMEWORK_VERSION") || version_compare (DOMFRAMEWORK_VERSION, "0.6") < 0) die ("Your DomFramework version is too old : 0.6 minimum\n"); */ -define ("DOMFRAMEWORK_VERSION", "0.28"); +define ("DOMFRAMEWORK_VERSION", "0.29");