[gnumeric] 1.9.12
- From: Morten Welinder <mortenw src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [gnumeric] 1.9.12
- Date: Sat, 5 Sep 2009 22:23:14 +0000 (UTC)
commit 4f115c31359d6c913787fd86c90e55a5f634c7c4
Author: Morten Welinder <terra gnome org>
Date: Sat Sep 5 18:23:04 2009 -0400
1.9.12
ChangeLog | 4 +++
doc/C/ChangeLog | 4 +++
doc/C/func.defs | 9 ++++++++
doc/C/functions.xml | 36 +++++++++++++++++++++++++++++++++++
doc/ChangeLog | 4 +++
doc/de/ChangeLog | 4 +++
plugins/applix/ChangeLog | 4 +++
plugins/corba/ChangeLog | 4 +++
plugins/dif/ChangeLog | 4 +++
plugins/excel/ChangeLog | 4 +++
plugins/fn-complex/ChangeLog | 4 +++
plugins/fn-database/ChangeLog | 4 +++
plugins/fn-date/ChangeLog | 4 +++
plugins/fn-derivatives/ChangeLog | 4 +++
plugins/fn-eng/ChangeLog | 4 +++
plugins/fn-erlang/ChangeLog | 4 +++
plugins/fn-financial/ChangeLog | 4 +++
plugins/fn-info/ChangeLog | 4 +++
plugins/fn-logical/ChangeLog | 4 +++
plugins/fn-lookup/ChangeLog | 4 +++
plugins/fn-math/ChangeLog | 4 +++
plugins/fn-numtheory/ChangeLog | 4 +++
plugins/fn-numtheory/doc/ChangeLog | 4 +++
plugins/fn-r/ChangeLog | 4 +++
plugins/fn-random/ChangeLog | 4 +++
plugins/fn-stat/ChangeLog | 4 +++
plugins/fn-string/ChangeLog | 4 +++
plugins/fn-tsa/ChangeLog | 4 +++
plugins/gda/ChangeLog | 4 +++
plugins/gnome-db/ChangeLog | 4 +++
plugins/gnome-glossary/ChangeLog | 4 +++
plugins/guile/ChangeLog | 4 +++
plugins/html/ChangeLog | 4 +++
plugins/lotus-123/ChangeLog | 4 +++
plugins/mps/ChangeLog | 4 +++
plugins/oleo/ChangeLog | 4 +++
plugins/openoffice/ChangeLog | 4 +++
plugins/paradox/ChangeLog | 4 +++
plugins/perl-func/ChangeLog | 4 +++
plugins/perl-loader/ChangeLog | 4 +++
plugins/plan-perfect/ChangeLog | 4 +++
plugins/psiconv/ChangeLog | 4 +++
plugins/py-func/ChangeLog | 4 +++
plugins/python-loader/ChangeLog | 4 +++
plugins/qpro/ChangeLog | 4 +++
plugins/sample_datasource/ChangeLog | 4 +++
plugins/sc/ChangeLog | 4 +++
plugins/sylk/ChangeLog | 4 +++
plugins/uihello/ChangeLog | 4 +++
plugins/xbase/ChangeLog | 4 +++
po-functions/ChangeLog | 4 +++
po/ChangeLog | 4 +++
src/dialogs/ChangeLog | 4 +++
src/tools/ChangeLog | 4 +++
src/tools/solver/ChangeLog | 4 +++
src/tools/solver/glpk/ChangeLog | 4 +++
src/tools/solver/lp_solve/ChangeLog | 4 +++
src/widgets/ChangeLog | 4 +++
test/ChangeLog | 4 +++
tools/ChangeLog | 4 +++
60 files changed, 277 insertions(+), 0 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index 103638d..301b5e4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-09-05 Jean Brefort <jean brefort normalesup org>
* all files: renamed go-color.h macros.
diff --git a/doc/C/ChangeLog b/doc/C/ChangeLog
index 5a4c59a..ca08a00 100644
--- a/doc/C/ChangeLog
+++ b/doc/C/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/doc/C/func.defs b/doc/C/func.defs
index 5002d78..483e8c4 100644
--- a/doc/C/func.defs
+++ b/doc/C/func.defs
@@ -2862,6 +2862,15 @@ If any argument is zero, the result is zero.
@SEEALSO=CEIL,FLOOR,ABS,INT,MOD
@CATEGORY=Mathematics
+ FUNCTION=CHOLESKY
+ SYNTAX=CHOLESKY(matrix)
+ DESCRIPTION=
+ {matrix}: a symmetric positive definite matrix
+ NOTE=If the Cholesky-Banachiewicz algorithm applied to @{matrix} fails, Cholesky returns #NUM!
+ NOTE=If @{matrix} does not contain an equal number of columns and rows, CHOLESKY returns #VALUE!
+ SEEALSO=MINVERSE,MMULT,MDETERM
+
+ CATEGORY=Mathematics
@FUNCTION=COMBIN
@SYNTAX=COMBIN(n,k)
@DESCRIPTION=COMBIN returns the binomial coefficient "@{n} choose @{k}", the number of @{k}-combinations of an @{n}-element set without repetition.
diff --git a/doc/C/functions.xml b/doc/C/functions.xml
index f7b69e5..57962de 100644
--- a/doc/C/functions.xml
+++ b/doc/C/functions.xml
@@ -8818,6 +8818,42 @@
</para>
</refsect1>
</refentry>
+ <refentry id="gnumeric-CHOLESKY">
+ <refmeta>
+ <refentrytitle>
+ <function>CHOLESKY</function>
+ </refentrytitle>
+ </refmeta>
+ <refnamediv>
+ <refname>
+ <function>CHOLESKY</function>
+ </refname>
+ <refpurpose/>
+ </refnamediv>
+ <refsynopsisdiv>
+ <synopsis><function>CHOLESKY</function>(<parameter>matrix</parameter>)</synopsis>
+ </refsynopsisdiv>
+ <refsect1>
+ <title>Description</title>
+ <para>.</para>
+ <para><parameter>matrix</parameter>: a symmetric positive definite matrix</para>
+ </refsect1>
+ <refsect1>
+ <title>Note</title>
+ <para>If the Cholesky-Banachiewicz algorithm applied to <parameter>matrix</parameter> fails, Cholesky returns #NUM!</para>
+ </refsect1>
+ <refsect1>
+ <title>Note</title>
+ <para>If <parameter>matrix</parameter> does not contain an equal number of columns and rows, <function>CHOLESKY</function> returns #VALUE!</para>
+ </refsect1>
+ <refsect1>
+ <title>See also</title>
+ <para><link linkend="gnumeric-MINVERSE"><function>MINVERSE</function></link>,
+ <link linkend="gnumeric-MMULT"><function>MMULT</function></link>,
+ <link linkend="gnumeric-MDETERM"><function>MDETERM</function></link>.
+ </para>
+ </refsect1>
+ </refentry>
<refentry id="gnumeric-COMBIN">
<refmeta>
<refentrytitle>
diff --git a/doc/ChangeLog b/doc/ChangeLog
index 2da2bb1..72a4b6e 100644
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/doc/de/ChangeLog b/doc/de/ChangeLog
index ca9251d..d5ee0e1 100644
--- a/doc/de/ChangeLog
+++ b/doc/de/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/plugins/applix/ChangeLog b/plugins/applix/ChangeLog
index 67e01d1..0cf856a 100644
--- a/plugins/applix/ChangeLog
+++ b/plugins/applix/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/plugins/corba/ChangeLog b/plugins/corba/ChangeLog
index 5cd9118..e2a50c9 100644
--- a/plugins/corba/ChangeLog
+++ b/plugins/corba/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/plugins/dif/ChangeLog b/plugins/dif/ChangeLog
index 4fe54d9..55fe600 100644
--- a/plugins/dif/ChangeLog
+++ b/plugins/dif/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/plugins/excel/ChangeLog b/plugins/excel/ChangeLog
index ad51e02..80d84fb 100644
--- a/plugins/excel/ChangeLog
+++ b/plugins/excel/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-09-05 Jean Brefort <jean brefort normalesup org>
* all files: renamed go-color.h macros.
diff --git a/plugins/fn-complex/ChangeLog b/plugins/fn-complex/ChangeLog
index a54bdcc..9385135 100644
--- a/plugins/fn-complex/ChangeLog
+++ b/plugins/fn-complex/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/plugins/fn-database/ChangeLog b/plugins/fn-database/ChangeLog
index 226ec20..0cdcc43 100644
--- a/plugins/fn-database/ChangeLog
+++ b/plugins/fn-database/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/plugins/fn-date/ChangeLog b/plugins/fn-date/ChangeLog
index 9f92afc..e64450d 100644
--- a/plugins/fn-date/ChangeLog
+++ b/plugins/fn-date/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/plugins/fn-derivatives/ChangeLog b/plugins/fn-derivatives/ChangeLog
index 5008248..d5be4a6 100644
--- a/plugins/fn-derivatives/ChangeLog
+++ b/plugins/fn-derivatives/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/plugins/fn-eng/ChangeLog b/plugins/fn-eng/ChangeLog
index ea3ccfc..602f889 100644
--- a/plugins/fn-eng/ChangeLog
+++ b/plugins/fn-eng/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/plugins/fn-erlang/ChangeLog b/plugins/fn-erlang/ChangeLog
index d049a9e..80cd997 100644
--- a/plugins/fn-erlang/ChangeLog
+++ b/plugins/fn-erlang/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/plugins/fn-financial/ChangeLog b/plugins/fn-financial/ChangeLog
index 74a53ae..ea1f08c 100644
--- a/plugins/fn-financial/ChangeLog
+++ b/plugins/fn-financial/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/plugins/fn-info/ChangeLog b/plugins/fn-info/ChangeLog
index 95f0a5c..0362d5e 100644
--- a/plugins/fn-info/ChangeLog
+++ b/plugins/fn-info/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/plugins/fn-logical/ChangeLog b/plugins/fn-logical/ChangeLog
index 52fb54a..aa59aae 100644
--- a/plugins/fn-logical/ChangeLog
+++ b/plugins/fn-logical/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/plugins/fn-lookup/ChangeLog b/plugins/fn-lookup/ChangeLog
index 70d656c..e8c3a0d 100644
--- a/plugins/fn-lookup/ChangeLog
+++ b/plugins/fn-lookup/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/plugins/fn-math/ChangeLog b/plugins/fn-math/ChangeLog
index ab87e07..6e84565 100644
--- a/plugins/fn-math/ChangeLog
+++ b/plugins/fn-math/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Andreas J. Guelzow <aguelzow pyrshep ca>
* plugin.xml.in: add CHOLESKY
diff --git a/plugins/fn-numtheory/ChangeLog b/plugins/fn-numtheory/ChangeLog
index b45833a..5f698d0 100644
--- a/plugins/fn-numtheory/ChangeLog
+++ b/plugins/fn-numtheory/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/plugins/fn-numtheory/doc/ChangeLog b/plugins/fn-numtheory/doc/ChangeLog
index 494dd1b..fd91fdf 100644
--- a/plugins/fn-numtheory/doc/ChangeLog
+++ b/plugins/fn-numtheory/doc/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/plugins/fn-r/ChangeLog b/plugins/fn-r/ChangeLog
index 34563c8..cfa94d5 100644
--- a/plugins/fn-r/ChangeLog
+++ b/plugins/fn-r/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/plugins/fn-random/ChangeLog b/plugins/fn-random/ChangeLog
index 8531c3f..0fa4160 100644
--- a/plugins/fn-random/ChangeLog
+++ b/plugins/fn-random/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/plugins/fn-stat/ChangeLog b/plugins/fn-stat/ChangeLog
index 965fe9a..50c7799 100644
--- a/plugins/fn-stat/ChangeLog
+++ b/plugins/fn-stat/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/plugins/fn-string/ChangeLog b/plugins/fn-string/ChangeLog
index 077db9e..23efbb0 100644
--- a/plugins/fn-string/ChangeLog
+++ b/plugins/fn-string/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/plugins/fn-tsa/ChangeLog b/plugins/fn-tsa/ChangeLog
index d16ecb8..6923465 100644
--- a/plugins/fn-tsa/ChangeLog
+++ b/plugins/fn-tsa/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/plugins/gda/ChangeLog b/plugins/gda/ChangeLog
index 3c5437a..740a3e2 100644
--- a/plugins/gda/ChangeLog
+++ b/plugins/gda/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/plugins/gnome-db/ChangeLog b/plugins/gnome-db/ChangeLog
index 8962e6a..5a4cdbd 100644
--- a/plugins/gnome-db/ChangeLog
+++ b/plugins/gnome-db/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/plugins/gnome-glossary/ChangeLog b/plugins/gnome-glossary/ChangeLog
index f844e3c..5775447 100644
--- a/plugins/gnome-glossary/ChangeLog
+++ b/plugins/gnome-glossary/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/plugins/guile/ChangeLog b/plugins/guile/ChangeLog
index 2c1be02..d2294d6 100644
--- a/plugins/guile/ChangeLog
+++ b/plugins/guile/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/plugins/html/ChangeLog b/plugins/html/ChangeLog
index f9353e4..bfd9bda 100644
--- a/plugins/html/ChangeLog
+++ b/plugins/html/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-09-05 Jean Brefort <jean brefort normalesup org>
reviewed by: <delete if not using a buddy>
diff --git a/plugins/lotus-123/ChangeLog b/plugins/lotus-123/ChangeLog
index d637e35..207a0d6 100644
--- a/plugins/lotus-123/ChangeLog
+++ b/plugins/lotus-123/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/plugins/mps/ChangeLog b/plugins/mps/ChangeLog
index c536397..3fe99fb 100644
--- a/plugins/mps/ChangeLog
+++ b/plugins/mps/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/plugins/oleo/ChangeLog b/plugins/oleo/ChangeLog
index 9f1045c..f50a832 100644
--- a/plugins/oleo/ChangeLog
+++ b/plugins/oleo/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/plugins/openoffice/ChangeLog b/plugins/openoffice/ChangeLog
index 9b31b3c..c158fc3 100644
--- a/plugins/openoffice/ChangeLog
+++ b/plugins/openoffice/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-09-05 Jean Brefort <jean brefort normalesup org>
* openoffice-write.c (gnm_xml_out_add_hex_color),
diff --git a/plugins/paradox/ChangeLog b/plugins/paradox/ChangeLog
index d2c2e06..27fa682 100644
--- a/plugins/paradox/ChangeLog
+++ b/plugins/paradox/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/plugins/perl-func/ChangeLog b/plugins/perl-func/ChangeLog
index 1457adf..dfdca8e 100644
--- a/plugins/perl-func/ChangeLog
+++ b/plugins/perl-func/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/plugins/perl-loader/ChangeLog b/plugins/perl-loader/ChangeLog
index 04dc972..3bfc326 100644
--- a/plugins/perl-loader/ChangeLog
+++ b/plugins/perl-loader/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/plugins/plan-perfect/ChangeLog b/plugins/plan-perfect/ChangeLog
index 9dd2b4b..4a8c461 100644
--- a/plugins/plan-perfect/ChangeLog
+++ b/plugins/plan-perfect/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/plugins/psiconv/ChangeLog b/plugins/psiconv/ChangeLog
index 139a0ae..e22bc6f 100644
--- a/plugins/psiconv/ChangeLog
+++ b/plugins/psiconv/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/plugins/py-func/ChangeLog b/plugins/py-func/ChangeLog
index df51df2..4ba9c19 100644
--- a/plugins/py-func/ChangeLog
+++ b/plugins/py-func/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/plugins/python-loader/ChangeLog b/plugins/python-loader/ChangeLog
index 37dc6f3..be674a3 100644
--- a/plugins/python-loader/ChangeLog
+++ b/plugins/python-loader/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/plugins/qpro/ChangeLog b/plugins/qpro/ChangeLog
index aa75db4..4ed0511 100644
--- a/plugins/qpro/ChangeLog
+++ b/plugins/qpro/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/plugins/sample_datasource/ChangeLog b/plugins/sample_datasource/ChangeLog
index 14a6a09..e21a29b 100644
--- a/plugins/sample_datasource/ChangeLog
+++ b/plugins/sample_datasource/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/plugins/sc/ChangeLog b/plugins/sc/ChangeLog
index 2a422f4..de90411 100644
--- a/plugins/sc/ChangeLog
+++ b/plugins/sc/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/plugins/sylk/ChangeLog b/plugins/sylk/ChangeLog
index 2438f7c..5f56889 100644
--- a/plugins/sylk/ChangeLog
+++ b/plugins/sylk/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/plugins/uihello/ChangeLog b/plugins/uihello/ChangeLog
index 93e10d6..e7227d2 100644
--- a/plugins/uihello/ChangeLog
+++ b/plugins/uihello/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/plugins/xbase/ChangeLog b/plugins/xbase/ChangeLog
index f7347ee..bfedbd8 100644
--- a/plugins/xbase/ChangeLog
+++ b/plugins/xbase/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/po-functions/ChangeLog b/po-functions/ChangeLog
index 8bb4e6c..69d66a5 100644
--- a/po-functions/ChangeLog
+++ b/po-functions/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/po/ChangeLog b/po/ChangeLog
index d2d8e13..0b53b99 100644
--- a/po/ChangeLog
+++ b/po/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/src/dialogs/ChangeLog b/src/dialogs/ChangeLog
index 8488276..04ae897 100644
--- a/src/dialogs/ChangeLog
+++ b/src/dialogs/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-09-05 Jean Brefort <jean brefort normalesup org>
* all files: renamed go-color.h macros.
diff --git a/src/tools/ChangeLog b/src/tools/ChangeLog
index b2e93cd..73a7dea 100644
--- a/src/tools/ChangeLog
+++ b/src/tools/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-09-05 Jean Brefort <jean brefort normalesup org>
* scenarios.c (summary_cb), (scenario_summary): renamed go-color.h macros.
diff --git a/src/tools/solver/ChangeLog b/src/tools/solver/ChangeLog
index 312af01..b8cc1ed 100644
--- a/src/tools/solver/ChangeLog
+++ b/src/tools/solver/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/src/tools/solver/glpk/ChangeLog b/src/tools/solver/glpk/ChangeLog
index 3252fba..46b762b 100644
--- a/src/tools/solver/glpk/ChangeLog
+++ b/src/tools/solver/glpk/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/src/tools/solver/lp_solve/ChangeLog b/src/tools/solver/lp_solve/ChangeLog
index 5525868..a589e50 100644
--- a/src/tools/solver/lp_solve/ChangeLog
+++ b/src/tools/solver/lp_solve/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/src/widgets/ChangeLog b/src/widgets/ChangeLog
index fc792f2..7f387c5 100644
--- a/src/widgets/ChangeLog
+++ b/src/widgets/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/test/ChangeLog b/test/ChangeLog
index a0a7be0..2215288 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
diff --git a/tools/ChangeLog b/tools/ChangeLog
index ae2b402..8e64910 100644
--- a/tools/ChangeLog
+++ b/tools/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-05 Morten Welinder <terra gnome org>
+
+ * Release 1.9.12
+
2009-08-30 Morten Welinder <terra gnome org>
* Release 1.9.11
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]