Skip to content

Commit

Permalink
Prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasmueller committed Aug 1, 2015
1 parent 376d098 commit 486fe1a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions h2/src/docsrc/html/changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@
<h1>Change Log</h1>

<h2>Next Version (unreleased)</h2>
<ul><li>-</li>
</ul>

<h2>Version 1.4.188 Beta (2015-08-01)</h2>
<ul>
<li>Server mode: CLOB processing for texts larger than about 1 MB sometimes did not work.
</li>
Expand Down
4 changes: 2 additions & 2 deletions h2/src/main/org/h2/engine/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class Constants {
/**
* The build date is updated for each public release.
*/
public static final String BUILD_DATE = "2015-04-10";
public static final String BUILD_DATE = "2015-08-01";

/**
* The build date of the last stable release.
Expand All @@ -26,7 +26,7 @@ public class Constants {
/**
* The build id is incremented for each public release.
*/
public static final int BUILD_ID = 187;
public static final int BUILD_ID = 188;

/**
* The build id of the last stable release.
Expand Down
1 change: 1 addition & 0 deletions h2/src/test/org/h2/samples/newsfeed.sql
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
CREATE TABLE VERSION(ID INT PRIMARY KEY, VERSION VARCHAR, CREATED VARCHAR);
INSERT INTO VERSION VALUES

(138, '1.4.188', '2015-08-01'),
(137, '1.4.187', '2015-04-10'),
(136, '1.4.186', '2015-03-02'),
(135, '1.4.185', '2015-01-16'),
Expand Down

0 comments on commit 486fe1a

Please sign in to comment.