diff --git a/ChangeLog b/ChangeLog index 85caadd7b75e46e5b399f8c31ca7ff679bd18c4d..a28eedd71fcca1d0974ce9b87a9089736abb65db 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,15 @@ English Dolibarr ChangeLog -------------------------------------------------------------- +***** ChangeLog for 3.1.3 compared to 3.1.2 ***** + +Fix: PgSQL - property must be set if success +Fix: Provide a solution for backup when mysqldump is not available +Fix: Bug #460 - Wrong entity assignment when creating a warehouse +Fix: bug #405 - Late icon always displayed on comm/propal.php + + + ***** ChangeLog for 3.1.2 compared to 3.1.1 ***** - Fix: Can clone a proposal diff --git a/build/doxygen/dolibarr-doxygen.doxyfile b/build/doxygen/dolibarr-doxygen.doxyfile index 1f617df0c1e8b3f998ca907495d82c6e5789bffe..ed9afe9d2f1cd09f18b1a8af017624bca3b62db7 100644 --- a/build/doxygen/dolibarr-doxygen.doxyfile +++ b/build/doxygen/dolibarr-doxygen.doxyfile @@ -31,7 +31,7 @@ PROJECT_NAME = dolibarr # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 3.1.2 +PROJECT_NUMBER = 3.1.3 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/build/doxygen/hudson-doxygen.doxyfile b/build/doxygen/hudson-doxygen.doxyfile index c5937faa407d3652ffa8d065741a2454b1d91c1a..1ace7f5d5e5dd056c83dfcef8e1161a0eff44e83 100644 --- a/build/doxygen/hudson-doxygen.doxyfile +++ b/build/doxygen/hudson-doxygen.doxyfile @@ -31,7 +31,7 @@ PROJECT_NAME = dolibarr # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 3.1.2 +PROJECT_NUMBER = 3.1.3 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/build/makepack-dolibarr.pl b/build/makepack-dolibarr.pl index 954fbea2f5b11873a6a595b4edec8f5af224a6b8..9d634b77e5abba92aabfd5a363cf8460fa49e6d4 100755 --- a/build/makepack-dolibarr.pl +++ b/build/makepack-dolibarr.pl @@ -11,7 +11,7 @@ use Cwd; $PROJECT="dolibarr"; $MAJOR="3"; $MINOR="1"; -$BUILD="2"; # Mettre x pour release, x-dev pour dev, x-beta pour beta, x-rc pour release candidate +$BUILD="3"; # Mettre x pour release, x-dev pour dev, x-beta pour beta, x-rc pour release candidate $RPMSUBVERSION="auto"; # auto use value found into BUILD @LISTETARGET=("TGZ","ZIP","RPM_GENERIC","RPM_FEDORA","RPM_MANDRIVA","RPM_OPENSUSE","DEB","APS","EXEDOLIWAMP","SNAPSHOT"); # Possible packages diff --git a/htdocs/filefunc.inc.php b/htdocs/filefunc.inc.php index e8224c8fe7b62283e8d952800362f3e404101a7b..b9b62c4756259e1ddbf83aec29d5e66bf365a9cd 100644 --- a/htdocs/filefunc.inc.php +++ b/htdocs/filefunc.inc.php @@ -30,7 +30,7 @@ * \version $Id: filefunc.inc.php,v 1.22 2011/08/04 12:07:29 eldy Exp $ */ -define('DOL_VERSION','3.1.2'); // Also defined in htdocs/install/inc.php (Ex: x.y.z-alpha, x.y.z) +define('DOL_VERSION','3.1.3'); // Also defined in htdocs/install/inc.php (Ex: x.y.z-alpha, x.y.z) define('EURO',chr(128)); // Definition des constantes syslog diff --git a/htdocs/install/inc.php b/htdocs/install/inc.php index eb891539cc49d9c455323d8593dbe476d782b8c7..0f39d8691f084e0834f4668bb3a033051f856cc3 100644 --- a/htdocs/install/inc.php +++ b/htdocs/install/inc.php @@ -24,7 +24,7 @@ * \version $Id: inc.php,v 1.139 2011/08/05 23:47:34 eldy Exp $ */ -define('DOL_VERSION','3.1.2'); // Also defined in htdocs/filefunc.inc.php (Ex: x.y.z-alpha, x.y.z) +define('DOL_VERSION','3.1.3'); // Also defined in htdocs/filefunc.inc.php (Ex: x.y.z-alpha, x.y.z) require_once('../core/class/translate.class.php'); require_once('../lib/functions.lib.php');