提交 1cdccd21 authored 作者: Thomas Mueller's avatar Thomas Mueller

Prepare release.

上级 12db2f13
...@@ -45,6 +45,10 @@ Change Log ...@@ -45,6 +45,10 @@ Change Log
</li></ul> </li></ul>
<h2>Next Version (unreleased)</h2> <h2>Next Version (unreleased)</h2>
<ul><li>-
</li></ul>
<h2>Version 1.3.176 (2014-04-05)</h2>
<ul><li>The file locking method 'serialized' is no longer documented, <ul><li>The file locking method 'serialized' is no longer documented,
as it will not be available in version 1.4. as it will not be available in version 1.4.
</li><li>The static method Csv.getInstance() was removed. </li><li>The static method Csv.getInstance() was removed.
...@@ -413,27 +417,5 @@ Change Log ...@@ -413,27 +417,5 @@ Change Log
</li><li>Added compatibility for "SET NAMES" query in MySQL compatibility mode.</li> </li><li>Added compatibility for "SET NAMES" query in MySQL compatibility mode.</li>
</ul> </ul>
<h2>Version 1.3.168 (2012-07-13)</h2>
<ul><li>The message "Transaction log could not be truncated" was sometimes written
to the .trace.db file even if there was no problem truncating the transaction log.
</li><li>New system property "h2.serializeJavaObject" (default: true) that allows to disable
serializing Java objects, so that the objects compareTo and toString methods can be used.
</li><li>Dylan has translated the H2 Console tool to Korean. Thanks a lot!
</li><li>Executing the statement CREATE INDEX IF ALREADY EXISTS if the index already exists
no longer fails for a read only database.
</li><li>MVCC: concurrently updating a row could result in the row to appear deleted in the second connection,
if there are multiple unique indexes (or a primary key and at least one unique index).
Thanks a lot to Teruo for the patch!
</li><li>Fulltext search: in-memory Lucene indexes are now supported.
</li><li>Fulltext search: UUID primary keys are now supported.
</li><li>Apache Tomcat 7.x will now longer log a warning when unloading the web application, if using a connection pool.
</li><li>H2 Console: support the Midori browser (for Debian / Raspberry Pi)
</li><li>When opening a remote session, don't open a temporary file if the trace level is set to zero
</li><li>Use HMAC for authenticating remote LOB id's, removing the need for maintaining a cache, and removing the limit
on the number of LOBs per result set.
</li><li>H2 Console: HTML and XML documents can now be edited in an updatable result set.
There is (limited) support for editing multi-line documents.
</li></ul>
<!-- [close] { --></div></td></tr></table><!-- } --><!-- analytics --></body></html> <!-- [close] { --></div></td></tr></table><!-- } --><!-- analytics --></body></html>
...@@ -385,14 +385,14 @@ public class ConnectionInfo implements Cloneable { ...@@ -385,14 +385,14 @@ public class ConnectionInfo implements Cloneable {
if (nameNormalized == null) { if (nameNormalized == null) {
if (!SysProperties.IMPLICIT_RELATIVE_PATH) { if (!SysProperties.IMPLICIT_RELATIVE_PATH) {
if (!FileUtils.isAbsolute(name)) { if (!FileUtils.isAbsolute(name)) {
if (name.indexOf("./") < 0 && if (name.indexOf("./") < 0 &&
name.indexOf(".\\") < 0) { name.indexOf(".\\") < 0) {
// the name could start with "./", or // the name could start with "./", or
// it could start with a prefix such as "nio:./" // it could start with a prefix such as "nio:./"
throw DbException.get( throw DbException.get(
ErrorCode.URL_RELATIVE_TO_CWD, ErrorCode.URL_RELATIVE_TO_CWD,
originalURL); originalURL);
} }
} }
} }
String suffix = Constants.SUFFIX_PAGE_FILE; String suffix = Constants.SUFFIX_PAGE_FILE;
......
...@@ -17,22 +17,22 @@ public class Constants { ...@@ -17,22 +17,22 @@ 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-01-18"; public static final String BUILD_DATE = "2014-04-05";
/** /**
* 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 = "2013-10-19"; public static final String BUILD_DATE_STABLE = "2014-01-18";
/** /**
* The build id is incremented for each public release. * The build id is incremented for each public release.
*/ */
public static final int BUILD_ID = 175; public static final int BUILD_ID = 176;
/** /**
* The build id of the last stable release. * The build id of the last stable release.
*/ */
public static final int BUILD_ID_STABLE = 174; public static final int BUILD_ID_STABLE = 175;
/** /**
* Whether this is a snapshot version. * Whether this is a snapshot version.
...@@ -100,7 +100,7 @@ public class Constants { ...@@ -100,7 +100,7 @@ public class Constants {
/** /**
* The minor version of this database. * The minor version of this database.
*/ */
public static final int VERSION_MINOR = 4; public static final int VERSION_MINOR = 3;
/** /**
* The lock mode that means no locking is used at all. * The lock mode that means no locking is used at all.
......
...@@ -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
(126, '1.3.176', '2014-04-05'),
(125, '1.3.175', '2014-01-18'), (125, '1.3.175', '2014-01-18'),
(124, '1.3.174', '2013-10-19'), (124, '1.3.174', '2013-10-19'),
(123, '1.3.173', '2013-07-28'), (123, '1.3.173', '2013-07-28'),
...@@ -16,8 +17,6 @@ INSERT INTO VERSION VALUES ...@@ -16,8 +17,6 @@ INSERT INTO VERSION VALUES
(119, '1.3.169', '2012-09-09'), (119, '1.3.169', '2012-09-09'),
(118, '1.3.168', '2012-07-13'), (118, '1.3.168', '2012-07-13'),
(117, '1.3.167', '2012-05-23'), (117, '1.3.167', '2012-05-23'),
(116, '1.3.166', '2012-04-08'),
(115, '1.3.165', '2012-03-18'),
; ;
CREATE TABLE CHANNEL(TITLE VARCHAR, LINK VARCHAR, DESC VARCHAR, CREATE TABLE CHANNEL(TITLE VARCHAR, LINK VARCHAR, DESC VARCHAR,
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论