提交 9e58c46c authored 作者: Thomas Mueller's avatar Thomas Mueller

Prepare release

上级 5bf28552
......@@ -18,6 +18,10 @@ Change Log
<h1>Change Log</h1>
<h2>Next Version (unreleased)</h2>
<ul><li>-
</li></ul>
<h2>Version 1.3.175 (2013-01-18)</h2>
<ul><li>EXPLAIN was incorrect for queries with "ANY" or "SOME" conditions.
</li><li>CallableStatement with "out" parameters: running the same statement twice
could result in an exception ("parameter not set").
......@@ -356,34 +360,5 @@ Change Log
There is (limited) support for editing multi-line documents.
</li></ul>
<h2>Version 1.3.167 (2012-05-23)</h2>
<ul><li>H2 Console: when editing a row, an empty varchar column was replaced with a single space.
</li><li>Lukas Eder has updated the jOOQ documentation.
</li><li>Some nested joins could not be executed, for example:
select * from (select * from (select * from a) a right join b b) c;
</li><li>MS SQL Server compatibility: ISNULL is now an alias for IFNULL.
</li><li>Terrence Huang has completed the translation of the H2 Console tool to Chinese. Thanks a lot!
</li><li>Server mode: the number of CLOB / BLOB values that were cached on the server
is now the maximum of: 5 times the SERVER_RESULT_SET_FETCH_SIZE (which is 100 by default),
and SysProperties.SERVER_CACHED_OBJECTS.
</li><li>In the trace file, the query execution time was incorrect in some cases, specially
for the statement SET TRACE_LEVEL_FILE 2.
</li><li>The feature LOG_SIZE_LIMIT that was introduced in version 1.3.165 did not always work
correctly (specially with regards to multithreading) and has been removed.
The message "Transaction log could not be truncated" is still written to the .trace.db file
if required.
</li><li>Then reading from a resource using the prefix "classpath:", the ContextClassLoader
is now used if the resource can't be read otherwise.
</li><li>DatabaseEventListener now calls setProgress whenever a statement starts and ends.
</li><li>DatabaseEventListener now calls setProgress periodically while a statement is running.
</li><li>The table INFORMATION_SCHEMA.FUNCTION_ALIASES now includes a column TYPE_NAME.
</li><li>Issue 378: when using views, the wrong values were bound to a parameter in some cases.
</li><li>Terrence Huang has translated the error messages to Chinese. Thanks a lot!
</li><li>TRUNC was added as an alias for TRUNCATE.
</li><li>Small optimisation for accessing result values by column name.
</li><li>Fix for bug in Statement.getMoreResults(int)
</li><li>The SCRIPT statements now supports filtering by schema and table. Thanks a lot to Jacob Qvortrup for providing the patch!
</li></ul>
<!-- [close] { --></div></td></tr></table><!-- } --><!-- analytics --></body></html>
Check dictionary.txt
svn up
./build.sh spellcheck
./build.sh javadocImpl
./build.sh docs
......
......@@ -17,22 +17,22 @@ public class Constants {
/**
* The build date is updated for each public release.
*/
public static final String BUILD_DATE = "2013-10-19";
public static final String BUILD_DATE = "2014-01-18";
/**
* The build date is updated for each public release.
*/
public static final String BUILD_DATE_STABLE = "2013-07-28";
public static final String BUILD_DATE_STABLE = "2013-10-19";
/**
* The build id is incremented for each public release.
*/
public static final int BUILD_ID = 174;
public static final int BUILD_ID = 175;
/**
* The build id of the last stable release.
*/
public static final int BUILD_ID_STABLE = 173;
public static final int BUILD_ID_STABLE = 174;
/**
* If H2 is compiled to be included in a product, this should be set to
......
......@@ -7,6 +7,7 @@
CREATE TABLE VERSION(ID INT PRIMARY KEY, VERSION VARCHAR, CREATED VARCHAR);
INSERT INTO VERSION VALUES
(125, '1.3.175', '2014-01-18'),
(124, '1.3.174', '2013-10-19'),
(123, '1.3.173', '2013-07-28'),
(122, '1.3.172', '2013-05-25'),
......@@ -17,8 +18,6 @@ INSERT INTO VERSION VALUES
(117, '1.3.167', '2012-05-23'),
(116, '1.3.166', '2012-04-08'),
(115, '1.3.165', '2012-03-18'),
(114, '1.3.164', '2012-01-03'),
(113, '1.3.163', '2011-12-30'),
;
CREATE TABLE CHANNEL(TITLE VARCHAR, LINK VARCHAR, DESC VARCHAR,
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论