Updates ChangeLog, core, and adds the new upgrade directory.
authorVincent Zanotti <vincent.zanotti@m4x.org>
Fri, 13 Nov 2009 10:44:49 +0000 (11:44 +0100)
committerVincent Zanotti <vincent.zanotti@m4x.org>
Fri, 13 Nov 2009 10:44:49 +0000 (11:44 +0100)
Signed-off-by: Vincent Zanotti <vincent.zanotti@m4x.org>
ChangeLog
core
upgrade/0.10.3/update.sh [new file with mode: 0755]

index ed2f752..2a9ab3e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,9 @@
 ================================================================================
+VERSION 0.10.3                                                        XX XX XXXX
+
+New:
+
+================================================================================
 VERSION 0.10.2                                                        13 11 2009
 
 New:
diff --git a/core b/core
index 7f6619f..d38df00 160000 (submodule)
--- a/core
+++ b/core
@@ -1 +1 @@
-Subproject commit 7f6619f92e410517bd2bebda355bc68f669b22a3
+Subproject commit d38df00e1a642351bf5db2eec61a86adf2052361
diff --git a/upgrade/0.10.3/update.sh b/upgrade/0.10.3/update.sh
new file mode 100755 (executable)
index 0000000..928d1e4
--- /dev/null
@@ -0,0 +1,15 @@
+#!/bin/bash
+
+. ../inc/pervasive.sh
+
+mailman_stop
+mailman_templates
+mailman_start
+
+###########################################################
+for sql in *.sql
+do
+    echo -n $sql
+    $MYSQL $DATABASE < $sql &>/dev/null || echo -n " ERROR"
+    echo .
+done