提交 8b3fa4dd authored 作者: Thomas Mueller's avatar Thomas Mueller

Prepare release.

上级 f28283a9
...@@ -18,6 +18,10 @@ Change Log ...@@ -18,6 +18,10 @@ Change Log
<h1>Change Log</h1> <h1>Change Log</h1>
<h2>Next Version (unreleased)</h2> <h2>Next Version (unreleased)</h2>
<ul><li>-
</li></ul>
<h2>Version 1.2.142 (2010-08-31)</h2>
<ul><li>Documentation for using H2 on Android devices has been added under Tutorial - Android. <ul><li>Documentation for using H2 on Android devices has been added under Tutorial - Android.
</li><li>An ArrayIndexOutOfBoundsException was thrown when querying the table </li><li>An ArrayIndexOutOfBoundsException was thrown when querying the table
information_schema.function_aliases while there are any user defined aggregate functions. information_schema.function_aliases while there are any user defined aggregate functions.
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -14,12 +14,12 @@ public class Constants { ...@@ -14,12 +14,12 @@ public class Constants {
/** /**
* The build id is incremented for each public release. * The build id is incremented for each public release.
*/ */
public static final int BUILD_ID = 141; public static final int BUILD_ID = 142;
/** /**
* The build id of the last stable release. * The build id of the last stable release.
*/ */
public static final int BUILD_ID_STABLE = 140; public static final int BUILD_ID_STABLE = 141;
/** /**
* If H2 is compiled to be included in a product, this should be set to * If H2 is compiled to be included in a product, this should be set to
...@@ -32,12 +32,12 @@ public class Constants { ...@@ -32,12 +32,12 @@ public class Constants {
/** /**
* The build date is updated for each public release. * The build date is updated for each public release.
*/ */
public static final String BUILD_DATE = "2010-08-22"; public static final String BUILD_DATE = "2010-08-31";
/** /**
* The build date is updated for each public release. * The build date is updated for each public release.
*/ */
public static final String BUILD_DATE_STABLE = "2010-07-25"; public static final String BUILD_DATE_STABLE = "2010-08-22";
/** /**
* The TCP protocol version number 6. * The TCP protocol version number 6.
......
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
CREATE TABLE VERSION(ID INT PRIMARY KEY, VERSION VARCHAR, CREATED VARCHAR); CREATE TABLE VERSION(ID INT PRIMARY KEY, VERSION VARCHAR, CREATED VARCHAR);
INSERT INTO VERSION VALUES INSERT INTO VERSION VALUES
(92, '1.2.142', '2010-08-31'),
(91, '1.2.141', '2010-08-22'), (91, '1.2.141', '2010-08-22'),
(90, '1.2.140', '2010-07-25'), (90, '1.2.140', '2010-07-25'),
(89, '1.2.139', '2010-07-10'), (89, '1.2.139', '2010-07-10'),
...@@ -21,7 +22,6 @@ INSERT INTO VERSION VALUES ...@@ -21,7 +22,6 @@ INSERT INTO VERSION VALUES
(80, '1.2.130', '2010-02-26'), (80, '1.2.130', '2010-02-26'),
(79, '1.2.129', '2010-02-19'), (79, '1.2.129', '2010-02-19'),
(78, '1.2.128', '2010-01-30'), (78, '1.2.128', '2010-01-30'),
(77, '1.2.127', '2010-01-15'),
; ;
CREATE TABLE CHANNEL(TITLE VARCHAR, LINK VARCHAR, DESC VARCHAR, CREATE TABLE CHANNEL(TITLE VARCHAR, LINK VARCHAR, DESC VARCHAR,
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论