Skip to content

Commit

Permalink
post-release version adjustment
Browse files Browse the repository at this point in the history
  • Loading branch information
andreitokar committed Aug 23, 2023
1 parent 8ba3ea3 commit 21fb72b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion h2/pom.xml
Expand Up @@ -4,7 +4,7 @@

<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>2.2.222</version>
<version>2.2.229-SNAPSHOT</version>
<packaging>jar</packaging>
<name>H2 Database Engine</name>
<url>https://h2database.com</url>
Expand Down
4 changes: 2 additions & 2 deletions h2/src/main/org/h2/engine/Constants.java
Expand Up @@ -21,12 +21,12 @@ 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 = 222;
public static final int BUILD_ID = 229;

/**
* 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

0 comments on commit 21fb72b

Please sign in to comment.