Skip to content

Commit f3c8222

Browse files
committed
version and release date
1 parent 087522b commit f3c8222

File tree

6 files changed

+21
-11
lines changed

6 files changed

+21
-11
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ More information: https://h2database.com
2222
<dependency>
2323
<groupId>com.h2database</groupId>
2424
<artifactId>h2</artifactId>
25-
<version>2.1.214</version>
25+
<version>2.2.220</version>
2626
</dependency>
2727
```
2828

h2/src/docsrc/html/changelog.html

+6
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ <h1>Change Log</h1>
2121

2222
<h2>Next Version (unreleased)</h2>
2323
<ul>
24+
<li>Nothing yet...
25+
</li>
26+
</ul>
27+
28+
<h2>Version 2.2.220 (2023-07-04)</h2>
29+
<ul>
2430
<li>PR #3834: Increase database format version
2531
</li>
2632
<li>PR #3833: Disallow plain webAdminPassword values to force usage of hashes

h2/src/docsrc/html/download-archive.html

+4
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ <h2>Distribution</h2>
2828

2929
<table>
3030
<tbody>
31+
<tr><td>2.2.220</td>
32+
<td><a href="https://github.com/h2database/h2database/releases/download/version-2.2.220/h2-setup-2023-07-04.exe">Windows Installer</a></td>
33+
<td><a href="https://github.com/h2database/h2database/releases/download/version-2.2.220/h2-2023-07-04.zip">Platform-Independent Zip</a></td>
34+
</tr>
3135
<tr><td>2.1.214</td>
3236
<td><a href="https://github.com/h2database/h2database/releases/download/version-2.1.214/h2-setup-2022-06-13.exe">Windows Installer</a></td>
3337
<td><a href="https://github.com/h2database/h2database/releases/download/version-2.1.214/h2-2022-06-13.zip">Platform-Independent Zip</a></td>

h2/src/docsrc/html/download.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ <h3>Version ${version} (${versionDate})</h3>
2727
<!-- sha1Zip --><br />
2828
</p>
2929

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

3838
<h3>Archive Downloads</h3>

h2/src/main/org/h2/engine/Constants.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,18 @@ public class Constants {
1515
/**
1616
* The build date is updated for each public release.
1717
*/
18-
public static final String BUILD_DATE = "2022-06-13";
18+
public static final String BUILD_DATE = "2023-07-04";
1919

2020
/**
2121
* Sequential version number. Even numbers are used for official releases,
2222
* odd numbers are used for development builds.
2323
*/
24-
public static final int BUILD_ID = 219;
24+
public static final int BUILD_ID = 220;
2525

2626
/**
2727
* Whether this is a snapshot version.
2828
*/
29-
public static final boolean BUILD_SNAPSHOT = true;
29+
public static final boolean BUILD_SNAPSHOT = false;
3030

3131
/**
3232
* If H2 is compiled to be included in a product, this should be set to

h2/src/test/org/h2/samples/newsfeed.sql

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
CREATE TABLE VERSION(ID INT PRIMARY KEY, VERSION VARCHAR, CREATED VARCHAR);
88
INSERT INTO VERSION VALUES
99

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

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

0 commit comments

Comments
 (0)