Skip to content

Commit 8ba3ea3

Browse files
committed
in preparation for release
1 parent 57d2332 commit 8ba3ea3

7 files changed

Lines changed: 21 additions & 5 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
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.2.220</version>
25+
<version>2.2.222</version>
2626
</dependency>
2727
```
2828

h2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.h2database</groupId>
66
<artifactId>h2</artifactId>
7-
<version>2.2.229-SNAPSHOT</version>
7+
<version>2.2.222</version>
88
<packaging>jar</packaging>
99
<name>H2 Database Engine</name>
1010
<url>https://h2database.com</url>

h2/src/docsrc/html/changelog.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,14 @@ <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.222 (2023-08-22)</h2>
29+
<ul>
30+
<li>Fixed race condition in MVStore causing database corruption &quot;File corrupted in chunk ###&quot;
31+
</li>
2432
<li>Issue #3868: INFORMATION_SCHEMA.SESSIONS.ISOLATION_LEVEL returns isolation level of the current session in all rows
2533
</li>
2634
<li>RP #3865: Add possibility to enable virtual worker threads in TCP, Web, and PG servers on Java 21+

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

Lines changed: 4 additions & 0 deletions
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.222</td>
32+
<td><a href="https://github.com/h2database/h2database/releases/download/version-2.2.222/h2-setup-2023-08-22.exe">Windows Installer</a></td>
33+
<td><a href="https://github.com/h2database/h2database/releases/download/version-2.2.222/h2-2023-08-22.zip">Platform-Independent Zip</a></td>
34+
</tr>
3135
<tr><td>2.2.220</td>
3236
<td><a href="https://github.com/h2database/h2database/releases/download/version-2.2.220/h2-setup-2023-07-04.exe">Windows Installer</a></td>
3337
<td><a href="https://github.com/h2database/h2database/releases/download/version-2.2.220/h2-2023-07-04.zip">Platform-Independent Zip</a></td>

h2/src/installer/release.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ Update org.h2.engine.Constants.java:
4040
Update README.md.
4141
set version to the new version
4242

43+
Update pom.xml.
44+
set version to the new version
45+
4346
Update changelog.html:
4447
* create a new "Next Version (unreleased)" with an empty list
4548
* add a new version

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

Lines changed: 3 additions & 3 deletions
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 = "2023-07-04";
18+
public static final String BUILD_DATE = "2023-08-22";
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 = 229;
24+
public static final int BUILD_ID = 222;
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

Lines changed: 1 addition & 0 deletions
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+
(158, '2.2.222', '2023-08-22'),
1011
(157, '2.2.220', '2023-07-04'),
1112
(156, '2.1.214', '2022-06-13'),
1213
(155, '2.1.212', '2022-04-09'),

0 commit comments

Comments
 (0)