Skip to content

Commit abac6c8

Browse files
committed
Next development version
1 parent 76994fd commit abac6c8

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

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.203-SNAPSHOT</version>
7+
<version>2.0.205-SNAPSHOT</version>
88
<packaging>jar</packaging>
99
<name>H2 Database Engine</name>
1010
<url>https://h2database.com</url>

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,23 +20,23 @@ public class Constants {
2020
/**
2121
* The build date of the last stable release.
2222
*/
23-
public static final String BUILD_DATE_STABLE = "2021-11-25";
23+
public static final String BUILD_DATE_STABLE = "2021-12-21";
2424

2525
/**
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 = 204;
29+
public static final int BUILD_ID = 205;
3030

3131
/**
3232
* The build id of the last stable release.
3333
*/
34-
public static final int BUILD_ID_STABLE = 202;
34+
public static final int BUILD_ID_STABLE = 204;
3535

3636
/**
3737
* Whether this is a snapshot version.
3838
*/
39-
public static final boolean BUILD_SNAPSHOT = false;
39+
public static final boolean BUILD_SNAPSHOT = true;
4040

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

498498
/**
499499
* The complete version number of this database, consisting of

0 commit comments

Comments
 (0)