Skip to content

Commit

Permalink
test 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
VGalaxies committed Dec 25, 2024
1 parent 751f6be commit 1b0677f
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ public class CommonVersion {
public static final String NAME = "hugegraph-common";

// The second parameter of Version.of() is for all-in-one JAR
public static final Version VERSION = Version.of(CommonVersion.class, "1.5.0");
public static final Version VERSION = Version.of(CommonVersion.class, "1.6.0");
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ public class RpcVersion {
public static final String NAME = "hugegraph-rpc";

// The second parameter of Version.of() is for all-in-one JAR
public static final Version VERSION = Version.of(RpcVersion.class, "1.5.0");
public static final Version VERSION = Version.of(RpcVersion.class, "1.6.0");
}
2 changes: 1 addition & 1 deletion hugegraph-commons/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@

<properties>
<!-- Note: We need also update the version in CommonVersion.java & RpcVersion.java now -->
<revision>1.5.0</revision>
<revision>1.6.0</revision>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<top.level.dir>${project.basedir}/..</top.level.dir>
<compiler.source>1.8</compiler.source>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class API {

// TODO: use a flexible way to define the version
// refer: https://github.com/apache/hugegraph/pull/2528#discussion_r1573823996
public static final String VERSION = "1.5.0";
public static final String VERSION = "1.6.0";
public static final String PD = "PD";
public static final String STORE = "STORE";
public static String STATUS_KEY = "status";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
public class CoreVersion {

public static final String NAME = "hugegraph-core";
public static final String DEFAULT_VERSION = "1.5.0";
public static final String DEFAULT_VERSION = "1.6.0";
/**
* The second parameter of Version.of() is for IDE running without JAR
*/
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@
</scm>

<properties>
<revision>1.5.0</revision>
<hugegraph-commons.version>1.5.0</hugegraph-commons.version>
<revision>1.6.0</revision>
<hugegraph-commons.version>1.6.0</hugegraph-commons.version>
<lombok.version>1.18.30</lombok.version>
<release.name>hugegraph</release.name>
<maven.compiler.source>11</maven.compiler.source>
Expand Down

0 comments on commit 1b0677f

Please sign in to comment.