Skip to content

Commit

Permalink
version and release date
Browse files Browse the repository at this point in the history
  • Loading branch information
andreitokar committed Jul 4, 2023
1 parent 087522b commit f3c8222
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ More information: https://h2database.com
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>2.1.214</version>
<version>2.2.220</version>
</dependency>
```

Expand Down
6 changes: 6 additions & 0 deletions h2/src/docsrc/html/changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ <h1>Change Log</h1>

<h2>Next Version (unreleased)</h2>
<ul>
<li>Nothing yet...
</li>
</ul>

<h2>Version 2.2.220 (2023-07-04)</h2>
<ul>
<li>PR #3834: Increase database format version
</li>
<li>PR #3833: Disallow plain webAdminPassword values to force usage of hashes
Expand Down
4 changes: 4 additions & 0 deletions h2/src/docsrc/html/download-archive.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ <h2>Distribution</h2>

<table>
<tbody>
<tr><td>2.2.220</td>
<td><a href="https://github.com/h2database/h2database/releases/download/version-2.2.220/h2-setup-2023-07-04.exe">Windows Installer</a></td>
<td><a href="https://github.com/h2database/h2database/releases/download/version-2.2.220/h2-2023-07-04.zip">Platform-Independent Zip</a></td>
</tr>
<tr><td>2.1.214</td>
<td><a href="https://github.com/h2database/h2database/releases/download/version-2.1.214/h2-setup-2022-06-13.exe">Windows Installer</a></td>
<td><a href="https://github.com/h2database/h2database/releases/download/version-2.1.214/h2-2022-06-13.zip">Platform-Independent Zip</a></td>
Expand Down
10 changes: 5 additions & 5 deletions h2/src/docsrc/html/download.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ <h3>Version ${version} (${versionDate})</h3>
<!-- sha1Zip --><br />
</p>

<h3>Version 2.1.212 (2022-04-09)</h3>
<h3>Version 2.1.214 (2022-06-13)</h3>
<p>
<a href="https://github.com/h2database/h2database/releases/download/version-2.1.212/h2-setup-2022-04-09.exe">Windows Installer</a>
(SHA1 checksum: 06664cf7ae51b19208ccbe7eef2969d35c6366dc)<br />
<a href="https://github.com/h2database/h2database/releases/download/version-2.1.212/h2-2022-04-09.zip">Platform-Independent Zip</a>
(SHA1 checksum: 17e1f685eb112e710d652aed0135eca8bfa78180)<br />
<a href="https://github.com/h2database/h2database/releases/download/version-2.1.214/h2-setup-2022-06-13.exe">Windows Installer</a>
(SHA1 checksum: 5f7cd83d394df5882ed01553935463a848979f29)<br />
<a href="https://github.com/h2database/h2database/releases/download/version-2.1.214/h2-2022-06-13.zip">Platform-Independent Zip</a>
(SHA1 checksum: 5ff027217098bf6c800ef96b98f3a381b320e53d)<br />
</p>

<h3>Archive Downloads</h3>
Expand Down
6 changes: 3 additions & 3 deletions h2/src/main/org/h2/engine/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@ public class Constants {
/**
* The build date is updated for each public release.
*/
public static final String BUILD_DATE = "2022-06-13";
public static final String BUILD_DATE = "2023-07-04";

/**
* Sequential version number. Even numbers are used for official releases,
* odd numbers are used for development builds.
*/
public static final int BUILD_ID = 219;
public static final int BUILD_ID = 220;

/**
* Whether this is a snapshot version.
*/
public static final boolean BUILD_SNAPSHOT = true;
public static final boolean BUILD_SNAPSHOT = false;

/**
* If H2 is compiled to be included in a product, this should be set to
Expand Down
4 changes: 2 additions & 2 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

(157, '2.2.220', '2023-07-04'),
(156, '2.1.214', '2022-06-13'),
(155, '2.1.212', '2022-04-09'),
(154, '2.1.210', '2022-01-17'),
Expand All @@ -19,8 +20,7 @@ INSERT INTO VERSION VALUES
(147, '1.4.197', '2018-03-18'),
(146, '1.4.196', '2017-06-10'),
(145, '1.4.195', '2017-04-23'),
(144, '1.4.194', '2017-03-10'),
(143, '1.4.193', '2016-10-31');
(144, '1.4.194', '2017-03-10');

CREATE TABLE CHANNEL(TITLE VARCHAR, LINK VARCHAR, DESC VARCHAR,
LANGUAGE VARCHAR, PUB TIMESTAMP, LAST TIMESTAMP, AUTHOR VARCHAR);
Expand Down

0 comments on commit f3c8222

Please sign in to comment.