提交 36841fdf authored 作者: Thomas Mueller's avatar Thomas Mueller

Prepare release.

上级 ad94cc5a
......@@ -18,6 +18,10 @@ Change Log
<h1>Change Log</h1>
<h2>Next Version (unreleased)</h2>
<ul><li>-
</li></ul>
<h2>Version 1.3.148 Beta (2010-12-12)</h2>
<ul><li>The built-in connection pool was simplified a bit.
The dispose() method no longer throws an exception (it only logs it).
</li><li>The database upgrade (to upgrade from H2 version 1.1.x) has been simplified.
......
......@@ -17,7 +17,7 @@ Downloads
<h1>Downloads</h1>
<h3>Version ${version} (${versionDate})</h3>
<h3>Version ${version} (${versionDate}), Beta</h3>
<p>
<a href="http://www.h2database.com/h2-setup-${versionDate}.exe">Windows Installer</a>
<!-- sha1Exe --><br />
......
......@@ -30,12 +30,12 @@ Welcome to H2, the Java SQL database. The main features of H2 are:
</li><li>Small footprint: around 1 MB jar file size
</li></ul>
<table style="border: 0px; width: 450px;">
<table style="border: 0px; width: 470px;">
<tr><td style="border: 0px; background-color: #eee;">
<table style="border: 0px; margin: 0px 7px 12px 7px;">
<tr><td style="border: 0px; background-color: #eee;" colspan="2">
<h2 style="margin-top: 1em;">Download</h2>
Version ${version} (${versionDate})
Version ${version} (${versionDate}), Beta
</td></tr>
<tr><td style="border: 0px; background-color: #eee;">
<a href="http://www.h2database.com/h2-setup-${versionDate}.exe"><img style="border: 1px #00f solid;" src="images/download.png" alt="Download this database" width="22" height="20"/></a>
......@@ -82,7 +82,7 @@ Welcome to H2, the Java SQL database. The main features of H2 are:
<tr><td colspan="3" style="border: 0px; padding: 5px 0px 15px 0px;">
<h2 style="margin-top: 1em;">Features</h2>
<table style="width: 450px;"><tr class="notranslate">
<table style="width: 470px;"><tr class="notranslate">
<th></th>
<th>H2</th>
<th><a href="http://db.apache.org/derby">Derby</a></th>
......
......@@ -22,7 +22,7 @@ Initial Developer: H2 Group
} else if (key == 'build') {
if (value == 64) {
tag = 'tags/version-1.0.' + value;
} else if (value == 146) {
} else if (value == 146 || value == 148) {
tag = 'tags/version-1.3.' + build + '/h2';
} else if (value >= 120) {
tag = 'tags/version-1.2.' + value + '/h2';
......
......@@ -68,7 +68,7 @@ function go(file, line) {
var tag = 'trunk/h2';
if (build == 64) {
tag = 'tags/version-1.0.' + build;
} else if (build == 146) {
} else if (build == 146 || build == 148) {
tag = 'tags/version-1.3.' + build + '/h2';
} else if (build >= 120) {
tag = 'tags/version-1.2.' + build + '/h2';
......
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -2,6 +2,8 @@ Update Constants.java - change version and build number
Update changelog.html - add new version, remove oldest
Update newsfeed.sql - add new version, remove oldest
Minor version change: change sourceError.html and source.html
If a beta, change download.html: Version ${version} (${versionDate}), Beta
If a beta, change mainWeb.html: Version ${version} (${versionDate}), Beta
Benchmark: use latest versions of other dbs, change version(s) in performance.html
Run ./buildRelease.sh / buildRelease.bat
......
......@@ -16,22 +16,22 @@ public class Constants {
/**
* The build date is updated for each public release.
*/
public static final String BUILD_DATE = "2010-11-21";
public static final String BUILD_DATE = "2010-12-12";
/**
* The build date is updated for each public release.
*/
public static final String BUILD_DATE_STABLE = "2010-11-02";
public static final String BUILD_DATE_STABLE = "2010-11-21";
/**
* The build id is incremented for each public release.
*/
public static final int BUILD_ID = 147;
public static final int BUILD_ID = 148;
/**
* The build id of the last stable release.
*/
public static final int BUILD_ID_STABLE = 145;
public static final int BUILD_ID_STABLE = 147;
/**
* 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
(98, '1.3.148 Beta', '2010-12-12'),
(97, '1.2.147', '2010-11-21'),
(96, '1.3.146 Beta', '2010-11-08'),
(95, '1.2.145', '2010-11-02'),
......
......@@ -665,3 +665,4 @@ mbeans unregisters
arithmetics subtracting multiplying dividing
contended readwrite requery bindings projection syncable managing observer misuse windowed closable discriminator requeried abort
familiar rice reachable stopps mind develop currtid disposition connct extras
\ No newline at end of file
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论