Skip to content

Commit

Permalink
version 2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zyxxoo committed Apr 9, 2022
1 parent d0e5971 commit 9985758
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion hugegraph-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@
<manifestEntries>
<!-- Must be on one line, otherwise the automatic
upgrade script cannot replace the version number -->
<Implementation-Version>2.1.1.0</Implementation-Version>
<Implementation-Version>${implementation.version}</Implementation-Version>
</manifestEntries>
</archive>
</configuration>
Expand Down
5 changes: 2 additions & 3 deletions hugegraph-rpc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
</parent>

<artifactId>hugegraph-rpc</artifactId>
<version>2.1.0</version>

<name>hugegraph-rpc</name>
<description>HugeGraph Database RPC component</description>
Expand All @@ -25,7 +24,7 @@
<dependency>
<groupId>com.baidu.hugegraph</groupId>
<artifactId>hugegraph-common</artifactId>
<version>2.1.0</version>
<version>${project.version}</version>
</dependency>

<!-- sofa rpc -->
Expand Down Expand Up @@ -144,7 +143,7 @@
<manifestEntries>
<!-- Must be on one line, otherwise the automatic
upgrade script cannot replace the version number -->
<Implementation-Version>2.1.0.0</Implementation-Version>
<Implementation-Version>${implementation.version}</Implementation-Version>
</manifestEntries>
</archive>
</configuration>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ public class RpcVersion {

// The second parameter of Version.of() is for all-in-one JAR
public static final Version VERSION = Version.of(RpcVersion.class,
"2.1.0");
"2.1.1");
}
3 changes: 2 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@
<mockito.version>4.1.0</mockito.version>
<jakarta.xml.version>4.0.0-RC2</jakarta.xml.version>
<sun.xml.version>3.0.2</sun.xml.version>
<implementation.version>2.1.1.0</implementation.version>
</properties>

<modules>
Expand Down Expand Up @@ -138,7 +139,7 @@
<manifestEntries>
<!-- Must be on one line, otherwise the automatic
upgrade script cannot replace the version number -->
<Implementation-Version>2.1.1.0</Implementation-Version>
<Implementation-Version>${implementation.version}</Implementation-Version>
</manifestEntries>
</archive>
</configuration>
Expand Down

0 comments on commit 9985758

Please sign in to comment.