Skip to content

Commit

Permalink
Next development version
Browse files Browse the repository at this point in the history
  • Loading branch information
katzyn committed Jan 4, 2022
1 parent 76994fd commit abac6c8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion h2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>2.0.203-SNAPSHOT</version>
<version>2.0.205-SNAPSHOT</version>
<packaging>jar</packaging>
<name>H2 Database Engine</name>
<url>https://h2database.com</url>
Expand Down
10 changes: 5 additions & 5 deletions h2/src/main/org/h2/engine/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,23 +20,23 @@ public class Constants {
/**
* The build date of the last stable release.
*/
public static final String BUILD_DATE_STABLE = "2021-11-25";
public static final String BUILD_DATE_STABLE = "2021-12-21";

/**
* Sequential version number. Even numbers are used for official releases,
* odd numbers are used for development builds.
*/
public static final int BUILD_ID = 204;
public static final int BUILD_ID = 205;

/**
* The build id of the last stable release.
*/
public static final int BUILD_ID_STABLE = 202;
public static final int BUILD_ID_STABLE = 204;

/**
* Whether this is a snapshot version.
*/
public static final boolean BUILD_SNAPSHOT = false;
public static final boolean BUILD_SNAPSHOT = true;

/**
* If H2 is compiled to be included in a product, this should be set to
Expand Down Expand Up @@ -493,7 +493,7 @@ public class Constants {
/**
* The last stable version name.
*/
public static final String VERSION_STABLE = "1.4." + BUILD_ID_STABLE;
public static final String VERSION_STABLE = "2.0." + BUILD_ID_STABLE;

/**
* The complete version number of this database, consisting of
Expand Down

0 comments on commit abac6c8

Please sign in to comment.