Skip to content

Commit 3d957a0

Browse files
committed
Release 2.0.206 preparation
1 parent 2b6e303 commit 3d957a0

6 files changed

Lines changed: 12 additions & 7 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.0.204</version>
25+
<version>2.0.206</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.0.205-SNAPSHOT</version>
7+
<version>2.0.206</version>
88
<packaging>jar</packaging>
99
<name>H2 Database Engine</name>
1010
<url>https://h2database.com</url>

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,11 @@ <h2>Distribution</h2>
2828

2929
<table>
3030
<tbody>
31-
<tr><td>1.4.202</td>
31+
<tr><td>2.0.204</td>
32+
<td><a href="https://github.com/h2database/h2database/releases/download/version-2.0.204/h2-setup-2021-12-21.exe">Windows Installer</a></td>
33+
<td><a href="https://github.com/h2database/h2database/releases/download/version-2.0.204/h2-2021-12-21.zip">Platform-Independent Zip</a></td>
34+
</tr>
35+
<tr><td>2.0.202</td>
3236
<td><a href="https://github.com/h2database/h2database/releases/download/version-2.0.202/h2-setup-2021-11-25.exe">Windows Installer</a></td>
3337
<td><a href="https://github.com/h2database/h2database/releases/download/version-2.0.202/h2-2021-11-25.zip">Platform-Independent Zip</a></td>
3438
</tr>

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class Constants {
1515
/**
1616
* The build date is updated for each public release.
1717
*/
18-
public static final String BUILD_DATE = "2021-12-21";
18+
public static final String BUILD_DATE = "2022-01-04";
1919

2020
/**
2121
* The build date of the last stable release.
@@ -26,7 +26,7 @@ public class Constants {
2626
* Sequential version number. Even numbers are used for official releases,
2727
* odd numbers are used for development builds.
2828
*/
29-
public static final int BUILD_ID = 205;
29+
public static final int BUILD_ID = 206;
3030

3131
/**
3232
* The build id of the last stable release.
@@ -36,7 +36,7 @@ public class Constants {
3636
/**
3737
* Whether this is a snapshot version.
3838
*/
39-
public static final boolean BUILD_SNAPSHOT = true;
39+
public static final boolean BUILD_SNAPSHOT = false;
4040

4141
/**
4242
* 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+
(153, '2.0.206', '2022-01-04'),
1011
(152, '2.0.204', '2021-12-21'),
1112
(151, '2.0.202', '2021-11-25'),
1213
(150, '1.4.200', '2019-10-14'),

h2/src/tools/org/h2/build/Build.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -602,7 +602,7 @@ public void javadocImpl() {
602602
File.pathSeparator + "src/test" +
603603
File.pathSeparator + "src/tools",
604604
// need to be disabled for java 7
605-
"-Xdoclint:all,-missing",
605+
// "-Xdoclint:all,-missing",
606606
"-noindex",
607607
"-tag", "h2.resource",
608608
"-d", "docs/javadocImpl2",

0 commit comments

Comments
 (0)