提交 e1d2d075 authored 作者: Thomas Mueller's avatar Thomas Mueller

Prepare release.

上级 c09078a7
...@@ -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.3.150 Beta (2011-01-28)</h2>
<ul><li>CSVREAD / CSVWRITE: instead of setting the options one by one, <ul><li>CSVREAD / CSVWRITE: instead of setting the options one by one,
all options can be combined into a space separated key-value pairs. all options can be combined into a space separated key-value pairs.
</li><li>CSVREAD / CSV tool: there is a new option "lineCommentCharacter" to set or disable line comments. </li><li>CSVREAD / CSV tool: there is a new option "lineCommentCharacter" to set or disable line comments.
...@@ -844,43 +848,5 @@ when "LOBs in database" is enabled). ...@@ -844,43 +848,5 @@ when "LOBs in database" is enabled).
</li><li>Serialized access mode (server-less multi-connection mode): fixed getGeneratedKeys() for sequences. </li><li>Serialized access mode (server-less multi-connection mode): fixed getGeneratedKeys() for sequences.
</li></ul> </li></ul>
<h2>Version 1.2.127 (2010-01-15)</h2>
<ul><li>Serialized access mode (server-less multi-connection mode): sequences did not work as expected
(there were gaps in generated values when using multiple connections).
</li><li>Page store: new databases can not be opened with older versions.
</li><li>Page store: adding data to new database is now faster.
</li><li>File system: getting the file name from a path is now faster. This should
speed up BLOB and CLOB access.
</li><li>PgServer: incorrect SQL types were returned in result set meta data.
Concurrently opening a database could fail (PG catalog initialization was not synchronized).
Thanks a lot to Sergi Vladykin for providing the patches!
</li><li>SHOW COLUMNS did not work correctly if there where multiple indexes
on the same columns.
</li><li>Page store: the wrong write count was written to the database header.
This could cause the server-less multi-connection mode to fail.
</li><li>Result sets larger than 2 GB threw an exception "Negative seek offset". Fixed.
</li><li>If the system property h2.check was set to false, an ArrayIndexOutOfBoundsException could occur.
</li><li>Alter table is now supported even if a table has views defined. (Patch from Kerry Sainsbury).
</li><li>Fulltext search: exceptions within the fulltext search package had the wrong SQL state.
</li><li>The Lucene fulltext search ignored transaction rollback. Fixed using a trigger on rollback.
</li><li>Trigger can now be called on rollback.
</li><li>The shell script h2.sh ignored command line line arguments.
</li><li>When running H2 in the Google AppEngine for Java, a AccessControlException could be thrown
when trying to open a read-only database. Fixed.
</li><li>The user home directory prefix (~) is now only expanded when followed by a slash
or backslash, or standing alone.
</li><li>Native fulltext search: before inserting or deleting data, FT_INIT() had to be called.
This is no longer required.
</li><li>The .trace.db file is now only created if required.
</li><li>Shell tool: improved PostgreSQL compatibility.
</li><li>Trying to open a database in read-only mode when a .lock.db file exists will now fail
with a nice error message.
</li><li>H2 Console: data that is too long is now abbreviated as follows: text... (100000 characters).
A large binary is abbreviated as follows: abcdef... (100000 bytes).
</li><li>Faster data conversion from BIGINT or INT to DECIMAL.
</li><li>Server-less multi-connection mode: try to delete log files if switching between read/write operations.
</li><li>CompressLZF: Faster decompress and improved javadocs
</li></ul>
<!-- [close] { --></div></td></tr></table><!-- } --><!-- analytics --></body></html> <!-- [close] { --></div></td></tr></table><!-- } --><!-- analytics --></body></html>
...@@ -131,6 +131,7 @@ spread the word, and translated this project. Also many thanks to the donors: ...@@ -131,6 +131,7 @@ spread the word, and translated this project. Also many thanks to the donors:
</li><li>Knut Staring, Norway </li><li>Knut Staring, Norway
</li><li>Theis Borg, Denmark </li><li>Theis Borg, Denmark
</li><li>Joel A. Garringer, USA </li><li>Joel A. Garringer, USA
</li><li>Olivier Chafik, France
</li></ul> </li></ul>
<!-- [close] { --></div></td></tr></table><!-- } --><!-- analytics --></body></html> <!-- [close] { --></div></td></tr></table><!-- } --><!-- analytics --></body></html>
......
...@@ -22,7 +22,7 @@ Initial Developer: H2 Group ...@@ -22,7 +22,7 @@ Initial Developer: H2 Group
} else if (key == 'build') { } else if (key == 'build') {
if (value == 64) { if (value == 64) {
tag = 'tags/version-1.0.' + value; tag = 'tags/version-1.0.' + value;
} else if (value == 146 || value == 148 || value == 149) { } else if (value == 146 (value >= 148 && value <= 150)) {
tag = 'tags/version-1.3.' + build + '/h2'; tag = 'tags/version-1.3.' + build + '/h2';
} else if (value >= 120) { } else if (value >= 120) {
tag = 'tags/version-1.2.' + value + '/h2'; tag = 'tags/version-1.2.' + value + '/h2';
......
...@@ -68,7 +68,7 @@ function go(file, line) { ...@@ -68,7 +68,7 @@ function go(file, line) {
var tag = 'trunk/h2'; var tag = 'trunk/h2';
if (build == 64) { if (build == 64) {
tag = 'tags/version-1.0.' + build; tag = 'tags/version-1.0.' + build;
} else if (build == 146 || build == 148 || build == 149) { } else if (build == 146 || (build >= 148 && build <= 150)) {
tag = 'tags/version-1.3.' + build + '/h2'; tag = 'tags/version-1.3.' + build + '/h2';
} else if (build >= 120) { } else if (build >= 120) {
tag = 'tags/version-1.2.' + build + '/h2'; tag = 'tags/version-1.2.' + build + '/h2';
......
...@@ -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 = "2011-01-07"; public static final String BUILD_DATE = "2011-01-28";
/** /**
* The build date is updated for each public release. * The build date is updated for each public 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 = 149; public static final int BUILD_ID = 150;
/** /**
* The build id of the last stable release. * The build id of the last stable release.
......
...@@ -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
(100, '1.3.150 Beta', '2011-01-28'),
(99, '1.3.149 Beta', '2011-01-07'), (99, '1.3.149 Beta', '2011-01-07'),
(98, '1.3.148 Beta', '2010-12-12'), (98, '1.3.148 Beta', '2010-12-12'),
(97, '1.2.147', '2010-11-21'), (97, '1.2.147', '2010-11-21'),
...@@ -23,7 +24,6 @@ INSERT INTO VERSION VALUES ...@@ -23,7 +24,6 @@ INSERT INTO VERSION VALUES
(86, '1.2.136', '2010-05-24'), (86, '1.2.136', '2010-05-24'),
(85, '1.2.135', '2010-05-08'), (85, '1.2.135', '2010-05-08'),
(84, '1.2.134', '2010-04-23'), (84, '1.2.134', '2010-04-23'),
(83, '1.2.133', '2010-04-10'),
; ;
CREATE TABLE CHANNEL(TITLE VARCHAR, LINK VARCHAR, DESC VARCHAR, CREATE TABLE CHANNEL(TITLE VARCHAR, LINK VARCHAR, DESC VARCHAR,
......
...@@ -668,4 +668,4 @@ requeried requery closable curr outdated market accurate borg theis welford ...@@ -668,4 +668,4 @@ requeried requery closable curr outdated market accurate borg theis welford
ooq exceeded eye hannibal stels garringer czech prevention propagate ooq exceeded eye hannibal stels garringer czech prevention propagate
compromise portion nodded rapping door stealing napping artifacts lore compromise portion nodded rapping door stealing napping artifacts lore
pondered curious muttered quaint chamber nearly unwrapped flows weary volume pondered curious muttered quaint chamber nearly unwrapped flows weary volume
tapping gently dreary wrapping tis moger udt tapping gently dreary wrapping tis moger udt chafik
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论