diff --git a/debian/changelog b/debian/changelog index 48a3c42..dcc6c20 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +domframework (0.18-1) testing; urgency=low + * config : return an Exception code when there is an error + * config : allow the configuration file to be setted in the object and used + instead of defined one + * logger : add stderr support + * BUG form : allow the values and the errors to be displayed (introduced in + 0.17 version) + -- Dominique Fournier Mon, 08 Jun 2015 14:01:57 +0100 + domframework (0.17-1) testing; urgency=low * route : the redirect can be done outside the site, with a warning * logger : allow the types of log to be a string or already an array diff --git a/debian/makePackageDebian b/debian/makePackageDebian index 9507971..e10bcad 100755 --- a/debian/makePackageDebian +++ b/debian/makePackageDebian @@ -1,6 +1,6 @@ #!/bin/bash -x # Think about changing the version.php file !! -VERSION="0.17" +VERSION="0.18" PACKAGE="domframework" rm -rf /tmp/${PACKAGE}pack mkdir /tmp/${PACKAGE}pack diff --git a/version.php b/version.php index 4b8c648..d63bdb4 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.17"); +define ("DOMFRAMEWORK_VERSION", "0.18");