We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 087522b commit f3c8222Copy full SHA for f3c8222
README.md
@@ -22,7 +22,7 @@ More information: https://h2database.com
22
<dependency>
23
<groupId>com.h2database</groupId>
24
<artifactId>h2</artifactId>
25
- <version>2.1.214</version>
+ <version>2.2.220</version>
26
</dependency>
27
```
28
h2/src/docsrc/html/changelog.html
@@ -21,6 +21,12 @@ <h1>Change Log</h1>
21
<h2>Next Version (unreleased)</h2>
<ul>
+<li>Nothing yet...
+</li>
+</ul>
+
+<h2>Version 2.2.220 (2023-07-04)</h2>
29
+<ul>
30
<li>PR #3834: Increase database format version
31
</li>
32
<li>PR #3833: Disallow plain webAdminPassword values to force usage of hashes
h2/src/docsrc/html/download-archive.html
@@ -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>
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>
35
<tr><td>2.1.214</td>
36
<td><a href="https://github.com/h2database/h2database/releases/download/version-2.1.214/h2-setup-2022-06-13.exe">Windows Installer</a></td>
37
<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
@@ -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 />
38
<h3>Archive Downloads</h3>
h2/src/main/org/h2/engine/Constants.java
@@ -15,18 +15,18 @@ public class Constants {
15
/**
16
* The build date is updated for each public release.
17
*/
18
- public static final String BUILD_DATE = "2022-06-13";
+ public static final String BUILD_DATE = "2023-07-04";
19
20
* 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
h2/src/test/org/h2/samples/newsfeed.sql
@@ -7,6 +7,7 @@
7
CREATE TABLE VERSION(ID INT PRIMARY KEY, VERSION VARCHAR, CREATED VARCHAR);
8
INSERT INTO VERSION VALUES
9
10
+(157, '2.2.220', '2023-07-04'),
11
(156, '2.1.214', '2022-06-13'),
12
(155, '2.1.212', '2022-04-09'),
13
(154, '2.1.210', '2022-01-17'),
@@ -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);
0 commit comments