Skip to content

Commit

Permalink
Prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasmueller committed Oct 31, 2016
1 parent 1576ebc commit 2abb26c
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.193 Beta (2016-10-31)</h2>
<ul>
<li>WARNING: THE MERGE BELOW WILL AFFECT ANY 'TIMESTAMP WITH TIMEZONE' INDEXES. You will need to drop and recreate any such indexes.
</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 = "2016-05-26";
public static final String BUILD_DATE = "2016-10-31";

/**
* 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 = 192;
public static final int BUILD_ID = 193;

/**
* 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

(143, '1.4.193', '2016-10-31'),
(142, '1.4.192', '2016-05-26'),
(141, '1.4.191', '2016-01-21'),
(140, '1.4.190', '2015-10-11'),
Expand Down

0 comments on commit 2abb26c

Please sign in to comment.