Skip to content

Commit

Permalink
change release date
Browse files Browse the repository at this point in the history
  • Loading branch information
andreitokar committed Nov 25, 2021
1 parent 7c63997 commit 7309020
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion h2/src/docsrc/html/changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,10 @@ <h2>Next Version (unreleased)</h2>
</li>
</ul>

<h2>Version 2.0.202 (2021-11-23)</h2>
<h2>Version 2.0.202 (2021-11-25)</h2>
<ul>
<li>Issue #3206: CVE Vulnerability CVE-2018-14335
</li>
<li>Issue #3174: Add keyword AUTOCOMMIT on create linked table to control the commit mode
</li>
<li>Issue #3130: Precision of NUMERIC values isn't verified in the Oracle compatibility mode
Expand Down
2 changes: 1 addition & 1 deletion h2/src/docsrc/html/performance.html
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ <h3>Benchmark Results and Comments</h3>

<h4>H2</h4>
<p>
Version 2.0.202 (2021-11-23) was used for the test.
Version 2.0.202 (2021-11-25) was used for the test.
For most operations, the performance of H2 is about the same as for HSQLDB.
One situation where H2 is slow is large result sets, because they are buffered to
disk if more than a certain number of records are returned.
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 @@ -15,7 +15,7 @@ public class Constants {
/**
* The build date is updated for each public release.
*/
public static final String BUILD_DATE = "2021-11-23";
public static final String BUILD_DATE = "2021-11-25";

/**
* The build date of the last stable release.
Expand Down Expand Up @@ -84,7 +84,7 @@ public class Constants {

/**
* The TCP protocol version number 20.
* @since 2.0.202 (2021-11-23)
* @since 2.0.202 (2021-11-25)
*/
public static final int TCP_PROTOCOL_VERSION_20 = 20;

Expand Down
2 changes: 1 addition & 1 deletion h2/src/test/org/h2/samples/newsfeed.sql
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
CREATE TABLE VERSION(ID INT PRIMARY KEY, VERSION VARCHAR, CREATED VARCHAR);
INSERT INTO VERSION VALUES

(151, '2.0.202', '2021-11-23'),
(151, '2.0.202', '2021-11-25'),
(150, '1.4.200', '2019-10-14'),
(149, '1.4.199', '2019-03-13'),
(148, '1.4.198', '2019-02-22'),
Expand Down

0 comments on commit 7309020

Please sign in to comment.