Upgrade version to 1.8.0 for release (#55)

This commit is contained in:
Linary 2020-11-05 17:35:59 +08:00 committed by GitHub
parent 630e19f8bc
commit 2d4a8eebf8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@
<groupId>com.baidu.hugegraph</groupId>
<artifactId>hugegraph-common</artifactId>
<version>1.7.9</version>
<version>1.8.0</version>
<name>hugegraph-common</name>
<url>https://github.com/hugegraph/hugegraph-common</url>
@ -260,7 +260,7 @@
<manifestEntries>
<!-- Must be on one line, otherwise the automatic
upgrade script cannot replace the version number -->
<Implementation-Version>1.7.9.0</Implementation-Version>
<Implementation-Version>1.8.0.0</Implementation-Version>
</manifestEntries>
</archive>
</configuration>

View File

@ -27,5 +27,5 @@ public class CommonVersion {
// The second parameter of Version.of() is for all-in-one JAR
public static final Version VERSION = Version.of(CommonVersion.class,
"1.7.9");
"1.8.0");
}