提交 41f4050a authored 作者: thomasmueller's avatar thomasmueller

Prepare release

上级 c35140b8
...@@ -21,6 +21,10 @@ Change Log ...@@ -21,6 +21,10 @@ Change Log
<h2>Next Version (unreleased)</h2> <h2>Next Version (unreleased)</h2>
<ul> <ul>
</ul>
<h2>Version 1.4.194 (2017-03-10)</h2>
<ul>
<li>Issue #453: MVStore setCacheSize() should also limit the cacheChunkRef. <li>Issue #453: MVStore setCacheSize() should also limit the cacheChunkRef.
</li> </li>
<li>Issue #448: Newly added TO_DATE and TO_TIMESTAMP functions have wrong datatype. <li>Issue #448: Newly added TO_DATE and TO_TIMESTAMP functions have wrong datatype.
...@@ -82,7 +86,7 @@ changed from Types.OTHER (1111) to Types.TIMESTAMP_WITH_TIMEZONE (2014) ...@@ -82,7 +86,7 @@ changed from Types.OTHER (1111) to Types.TIMESTAMP_WITH_TIMEZONE (2014)
</li> </li>
</ul> </ul>
<h2>Version 1.4.193 Beta (2016-10-31)</h2> <h2>Version 1.4.193 (2016-10-31)</h2>
<ul> <ul>
<li>PR #386: Add JSR-310 Support (introduces JTS dependency fixed in 1.4.194) <li>PR #386: Add JSR-310 Support (introduces JTS dependency fixed in 1.4.194)
</li> </li>
......
...@@ -19,7 +19,7 @@ Downloads ...@@ -19,7 +19,7 @@ Downloads
<h1>Downloads</h1> <h1>Downloads</h1>
<h3>Version ${version} (${versionDate}), Beta</h3> <h3>Version ${version} (${versionDate})</h3>
<p> <p>
<a href="http://www.h2database.com/h2-setup-${versionDate}.exe">Windows Installer</a> <a href="http://www.h2database.com/h2-setup-${versionDate}.exe">Windows Installer</a>
<!-- sha1Exe --><br /> <!-- sha1Exe --><br />
......
...@@ -37,7 +37,7 @@ Welcome to H2, the Java SQL database. The main features of H2 are: ...@@ -37,7 +37,7 @@ Welcome to H2, the Java SQL database. The main features of H2 are:
<table style="border: 0px; margin: 0px 7px 12px 7px;"> <table style="border: 0px; margin: 0px 7px 12px 7px;">
<tr><td style="border: 0px; background-color: #eee;" colspan="2"> <tr><td style="border: 0px; background-color: #eee;" colspan="2">
<h2 style="margin-top: 1em;">Download</h2> <h2 style="margin-top: 1em;">Download</h2>
Version ${version} (${versionDate}), Beta Version ${version} (${versionDate})
</td></tr> </td></tr>
<tr><td style="border: 0px; background-color: #eee;"> <tr><td style="border: 0px; background-color: #eee;">
<a href="http://www.h2database.com/h2-setup-${versionDate}.exe"><img src="images/download-2.png" alt="Download this database" width="22" height="22"/></a> <a href="http://www.h2database.com/h2-setup-${versionDate}.exe"><img src="images/download-2.png" alt="Download this database" width="22" height="22"/></a>
......
...@@ -16,22 +16,22 @@ public class Constants { ...@@ -16,22 +16,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 = "2016-10-31"; public static final String BUILD_DATE = "2017-03-10";
/** /**
* The build date of the last stable release. * The build date of the last stable release.
*/ */
public static final String BUILD_DATE_STABLE = "2014-04-05"; public static final String BUILD_DATE_STABLE = "2016-10-31";
/** /**
* The build id is incremented for each public release. * The build id is incremented for each public release.
*/ */
public static final int BUILD_ID = 193; public static final int BUILD_ID = 194;
/** /**
* The build id of the last stable release. * The build id of the last stable release.
*/ */
public static final int BUILD_ID_STABLE = 176; public static final int BUILD_ID_STABLE = 193;
/** /**
* Whether this is a snapshot version. * Whether this is a snapshot version.
......
...@@ -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
(144, '1.4.194', '2017-03-10'),
(143, '1.4.193', '2016-10-31'), (143, '1.4.193', '2016-10-31'),
(142, '1.4.192', '2016-05-26'), (142, '1.4.192', '2016-05-26'),
(141, '1.4.191', '2016-01-21'), (141, '1.4.191', '2016-01-21'),
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论