diff --git a/debian/changelog b/debian/changelog index 8e4086b..871dcab 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +domframework (0.14-1) testing; urgency=low + * BUG config : an array with "not configured" should not be presented if there is + an other entry available + * Remove the CSRF debug log + -- Dominique Fournier Thu, 30 Apr 2015 15:36:57 +0100 + domframework (0.13-1) testing; urgency=low * route.php : Add support of URL matching with or without Slash * dblayer : don't connect multiple times to the same database/username diff --git a/debian/makePackageDebian b/debian/makePackageDebian index 04f00fd..60cdfb6 100755 --- a/debian/makePackageDebian +++ b/debian/makePackageDebian @@ -1,6 +1,6 @@ #!/bin/bash -x # Think about changing the version.php file !! -VERSION="0.13" +VERSION="0.14" PACKAGE="domframework" rm -rf /tmp/${PACKAGE}pack mkdir /tmp/${PACKAGE}pack diff --git a/version.php b/version.php index 9e27918..7d28ab2 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.13"); +define ("DOMFRAMEWORK_VERSION", "0.14");