Skip to content

Commit

Permalink
Release 2.0.206 preparation
Browse files Browse the repository at this point in the history
  • Loading branch information
andreitokar committed Jan 4, 2022
1 parent 2b6e303 commit 3d957a0
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -22,7 +22,7 @@ More information: https://h2database.com
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>2.0.204</version>
<version>2.0.206</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion h2/pom.xml
Expand Up @@ -4,7 +4,7 @@

<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>2.0.205-SNAPSHOT</version>
<version>2.0.206</version>
<packaging>jar</packaging>
<name>H2 Database Engine</name>
<url>https://h2database.com</url>
Expand Down
6 changes: 5 additions & 1 deletion h2/src/docsrc/html/download-archive.html
Expand Up @@ -28,7 +28,11 @@ <h2>Distribution</h2>

<table>
<tbody>
<tr><td>1.4.202</td>
<tr><td>2.0.204</td>
<td><a href="https://github.com/h2database/h2database/releases/download/version-2.0.204/h2-setup-2021-12-21.exe">Windows Installer</a></td>
<td><a href="https://github.com/h2database/h2database/releases/download/version-2.0.204/h2-2021-12-21.zip">Platform-Independent Zip</a></td>
</tr>
<tr><td>2.0.202</td>
<td><a href="https://github.com/h2database/h2database/releases/download/version-2.0.202/h2-setup-2021-11-25.exe">Windows Installer</a></td>
<td><a href="https://github.com/h2database/h2database/releases/download/version-2.0.202/h2-2021-11-25.zip">Platform-Independent Zip</a></td>
</tr>
Expand Down
6 changes: 3 additions & 3 deletions h2/src/main/org/h2/engine/Constants.java
Expand Up @@ -15,7 +15,7 @@ public class Constants {
/**
* The build date is updated for each public release.
*/
public static final String BUILD_DATE = "2021-12-21";
public static final String BUILD_DATE = "2022-01-04";

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

/**
* The build id of the last stable release.
Expand All @@ -36,7 +36,7 @@ public class Constants {
/**
* 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
1 change: 1 addition & 0 deletions h2/src/test/org/h2/samples/newsfeed.sql
Expand Up @@ -7,6 +7,7 @@
CREATE TABLE VERSION(ID INT PRIMARY KEY, VERSION VARCHAR, CREATED VARCHAR);
INSERT INTO VERSION VALUES

(153, '2.0.206', '2022-01-04'),
(152, '2.0.204', '2021-12-21'),
(151, '2.0.202', '2021-11-25'),
(150, '1.4.200', '2019-10-14'),
Expand Down
2 changes: 1 addition & 1 deletion h2/src/tools/org/h2/build/Build.java
Expand Up @@ -602,7 +602,7 @@ public void javadocImpl() {
File.pathSeparator + "src/test" +
File.pathSeparator + "src/tools",
// need to be disabled for java 7
"-Xdoclint:all,-missing",
// "-Xdoclint:all,-missing",
"-noindex",
"-tag", "h2.resource",
"-d", "docs/javadocImpl2",
Expand Down

0 comments on commit 3d957a0

Please sign in to comment.