Skip to content

Commit

Permalink
update version to V1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
imbajin committed Sep 1, 2022
1 parent 39db7de commit 05e93e0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,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,
"3.0.0");
public static final Version VERSION = Version.of(CommonVersion.class, "1.0.0");
}
2 changes: 1 addition & 1 deletion hugegraph-rpc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<artifactId>hugegraph-rpc</artifactId>
<name>${artifactId}</name>
<description>HugeGraph Database RPC component</description>
<description>HugeGraph RPC component</description>

<properties>
<!-- Use parent params -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,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,
"3.0.0");
public static final Version VERSION = Version.of(RpcVersion.class, "1.0.0");
}
3 changes: 2 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,15 @@
</license>
</licenses>

<!-- TODO: update url to upload in maven repo -->
<scm>
<url>https://github.com/hugegraph/hugegraph-commons</url>
<connection>https://github.com/hugegraph/hugegraph-commons</connection>
<developerConnection>https://github.com/hugegraph/hugegraph-commons</developerConnection>
</scm>

<properties>
<revision>3.0.0</revision>
<revision>1.0.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

0 comments on commit 05e93e0

Please sign in to comment.