Start packaging for 0.26

git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@2768 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
This commit is contained in:
2016-06-27 09:30:35 +00:00
parent 04f8a47af5
commit 98932d7a95
3 changed files with 16 additions and 2 deletions

14
debian/changelog vendored
View File

@@ -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 <dominique@fournier38.fr> 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

View File

@@ -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

View File

@@ -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");