diff --git a/debian/changelog b/debian/changelog index 0469b01..f0be6a4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,17 @@ +domframework (0.26-1) testing; urgency=low + * smtp : add SMTP support to send emails (with TLS, authentication PLAIN and + LOGIN, debug, non standard port, STARTTLS) + * mail : Complete rewrite. Allow to read an existing mail + * cli : allow the controllers\\ to be optional + * cli : allow the models\\ or controllers\\ to be optional if the name of the + class is unique + * cli : add a "-q" option to not display the return code + * BUG dblayer : Can't read with OR if there is multiple time the same field + with different values + * cli : display the complete string instead of truncate it + * form : add the conversion format for dates + -- Dominique Fournier Mon, 27 Jun 2016 11:29:57 +0100 + domframework (0.25-1) testing; urgency=low * Update Unit tests to not depend of configuration * Update Unit tests to have a distinct database file by test file diff --git a/debian/makePackageDebian b/debian/makePackageDebian index 2b3bc88..7638a4c 100755 --- a/debian/makePackageDebian +++ b/debian/makePackageDebian @@ -1,6 +1,6 @@ #!/bin/bash -x # Think about changing the version.php file !! -VERSION="0.25" +VERSION="0.26" PACKAGE="domframework" rm -rf /tmp/${PACKAGE}pack mkdir /tmp/${PACKAGE}pack diff --git a/version.php b/version.php index e45b25a..0687d6b 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.25"); +define ("DOMFRAMEWORK_VERSION", "0.26");