提交 4df1b3ce authored 作者: Thomas Mueller's avatar Thomas Mueller

Prepare release.

上级 bd3d964f
...@@ -17,6 +17,8 @@ Change Log ...@@ -17,6 +17,8 @@ Change Log
<h1>Change Log</h1> <h1>Change Log</h1>
<h2>Next Version (unreleased)</h2> <h2>Next Version (unreleased)</h2>
<h2>Version 1.4.179 Beta (2014-06-23)</h2>
<ul><li>The license was changed to MPL 2.0 (from 1.0) and EPL 1.0. <ul><li>The license was changed to MPL 2.0 (from 1.0) and EPL 1.0.
</li><li>Issue 565: MVStore: concurrently adding LOB objects </li><li>Issue 565: MVStore: concurrently adding LOB objects
(with MULTI_THREADED option) resulted in a NullPointerException. (with MULTI_THREADED option) resulted in a NullPointerException.
...@@ -432,27 +434,5 @@ Change Log ...@@ -432,27 +434,5 @@ Change Log
</li><li>Issue 439: Utils.sortTopN does not handle single-element arrays. </li><li>Issue 439: Utils.sortTopN does not handle single-element arrays.
</li></ul> </li></ul>
<h2>Version 1.3.170 (2012-11-30)</h2>
<ul><li>Issue 407: The TriggerAdapter didn't work with CLOB and BLOB columns.
</li><li>PostgreSQL compatibility: support for data types BIGSERIAL and SERIAL
as an alias for AUTO_INCREMENT.
</li><li>Issue 417: H2 Console: the web session timeout didn't work, resulting in a memory leak.
This was only a problem if the H2 Console was run for a long time and many sessions were opened.
</li><li>Issue 412: Running the Server tool with just the option "-browser" will now log a warning.
</li><li>Issue 411: CloseWatcher registration was not concurrency-safe.
</li><li>MySQL compatibility: support for CONCAT_WS.
Thanks a lot to litailang for the patch!
</li><li>PostgreSQL compatibility: support for EXTRACT(WEEK FROM dateColumn).
Thanks to Prashant Bhat for the patch!
</li><li>Fix for a bug where we would sometimes use the wrong unique constraint to validate foreign key constraints.
</li><li>Support BOM at the beginning of files for the RUNSCRIPT command
</li><li>Fix in calling SET @X = IDENTITY() where it would return NULL incorrectly
</li><li>Fix ABBA deadlock between adding a constraint and the H2-Log-Writer thread.
</li><li>Optimize IN(...) queries where the values are constant and of the same type.
</li><li>Restore tool: the parameter "quiet" was not used and is now removed.
</li><li>Fix ConcurrentModificationException when creating tables and executing SHOW TABLES in parallel. Reported by Viktor Voytovych.
</li><li>Serialization is now pluggable using the system property "h2.javaObjectSerializer". Thanks to Sergi Vladykin for the patch!
</li></ul>
<!-- [close] { --></div></td></tr></table><!-- } --><!-- analytics --></body></html> <!-- [close] { --></div></td></tr></table><!-- } --><!-- analytics --></body></html>
...@@ -16,7 +16,7 @@ public class Constants { ...@@ -16,7 +16,7 @@ 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 = "2014-05-02"; public static final String BUILD_DATE = "2014-06-23";
/** /**
* The build date of the last stable release. * The build date of the last stable release.
...@@ -26,7 +26,7 @@ public class Constants { ...@@ -26,7 +26,7 @@ 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 = 178; public static final int BUILD_ID = 179;
/** /**
* The build id of the last stable release. * The build id of the last stable release.
......
...@@ -6,6 +6,7 @@ ...@@ -6,6 +6,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
(129, '1.4.179', '2014-06-23'),
(128, '1.4.178', '2014-05-02'), (128, '1.4.178', '2014-05-02'),
(127, '1.4.177', '2014-04-12'), (127, '1.4.177', '2014-04-12'),
(126, '1.3.176', '2014-04-05'), (126, '1.3.176', '2014-04-05'),
...@@ -14,9 +15,6 @@ INSERT INTO VERSION VALUES ...@@ -14,9 +15,6 @@ INSERT INTO VERSION VALUES
(123, '1.3.173', '2013-07-28'), (123, '1.3.173', '2013-07-28'),
(122, '1.3.172', '2013-05-25'), (122, '1.3.172', '2013-05-25'),
(121, '1.3.171', '2013-03-17'), (121, '1.3.171', '2013-03-17'),
(120, '1.3.170', '2012-11-30'),
(119, '1.3.169', '2012-09-09'),
(118, '1.3.168', '2012-07-13'),
; ;
CREATE TABLE CHANNEL(TITLE VARCHAR, LINK VARCHAR, DESC VARCHAR, CREATE TABLE CHANNEL(TITLE VARCHAR, LINK VARCHAR, DESC VARCHAR,
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论