提交 43135fe5 authored 作者: Thomas Mueller's avatar Thomas Mueller

Prepare release.

上级 85d02316
......@@ -18,6 +18,10 @@ Change Log
<h1>Change Log</h1>
<h2>Next Version (unreleased)</h2>
<ul><li>-
</li></ul>
<h2>Version 1.3.151 Beta (2011-02-12)</h2>
<ul><li>Server: it was possible to open a database outside of the base URL
(if one was set). The test case was broken.
</li><li>The H2 Console tool now supports a database URL as a command line option.
......
......@@ -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 (value >= 148 && value <= 150)) {
} else if (value == 146 (value >= 148 && value <= 151)) {
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 || (build >= 148 && build <= 150)) {
} else if (build == 146 || (build >= 148 && build <= 151)) {
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.
Check dictionary.txt
./build.sh spellcheck
./build.sh javadocImpl
./build.sh docs
./build.sh spellcheck javadocImpl docs
Update Constants.java - change version and build number
Update changelog.html - add new version, remove oldest
Update newsfeed.sql - add new version, remove oldest
......
......@@ -16,7 +16,7 @@ public class Constants {
/**
* The build date is updated for each public release.
*/
public static final String BUILD_DATE = "2011-01-28";
public static final String BUILD_DATE = "2011-02-12";
/**
* The build date is updated for each public release.
......@@ -26,7 +26,7 @@ public class Constants {
/**
* The build id is incremented for each public release.
*/
public static final int BUILD_ID = 150;
public static final int BUILD_ID = 151;
/**
* The build id of the last stable release.
......
......@@ -7,6 +7,7 @@
CREATE TABLE VERSION(ID INT PRIMARY KEY, VERSION VARCHAR, CREATED VARCHAR);
INSERT INTO VERSION VALUES
(101, '1.3.151 Beta', '2011-02-12'),
(100, '1.3.150 Beta', '2011-01-28'),
(99, '1.3.149 Beta', '2011-01-07'),
(98, '1.3.148 Beta', '2010-12-12'),
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论