Skip to content

Commit 6a4041e

Browse files
committed
chore: upgrade to 1.3.0 (last major version support Java8)
fix
1 parent 713d88d commit 6a4041e

File tree

7 files changed

+10
-13
lines changed

7 files changed

+10
-13
lines changed

.github/workflows/check-dependencies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
dependency-check:
1414
runs-on: ubuntu-latest
1515
env:
16-
USE_STAGE: 'false' # Whether to include the stage repository.
16+
USE_STAGE: 'true' # Whether to include the stage repository.
1717
SCRIPT_DEPENDENCY: hugegraph-server/hugegraph-dist/scripts/dependency
1818
steps:
1919
- name: Checkout source

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
# TODO: we need test & replace it to ubuntu-24.04 or ubuntu-latest
1414
runs-on: ubuntu-20.04
1515
env:
16-
USE_STAGE: 'false' # Whether to include the stage repository.
16+
USE_STAGE: 'true' # Whether to include the stage repository.
1717
TRAVIS_DIR: hugegraph-server/hugegraph-dist/src/assembly/travis
1818
REPORT_DIR: target/site/jacoco
1919
BACKEND: ${{ matrix.BACKEND }}

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
jobs:
1313
analyze:
1414
env:
15-
USE_STAGE: 'false' # Whether to include the stage repository.
15+
USE_STAGE: 'true' # Whether to include the stage repository.
1616
name: Analyze
1717
runs-on: ubuntu-latest
1818
permissions:

.github/workflows/licence-checker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
check-license:
1212
runs-on: ubuntu-latest
1313
env:
14-
USE_STAGE: 'false' # Whether to include the stage repository.
14+
USE_STAGE: 'true' # Whether to include the stage repository.
1515
steps:
1616
- uses: actions/checkout@v4
1717

hugegraph-server/hugegraph-core/src/main/java/org/apache/hugegraph/version/CoreVersion.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
public class CoreVersion {
2424

2525
public static final String NAME = "hugegraph-core";
26-
public static final String DEFAULT_VERSION = "1.2.0";
26+
public static final String DEFAULT_VERSION = "1.3.0";
2727
/**
2828
* The second parameter of Version.of() is for IDE running without JAR
2929
*/
@@ -40,6 +40,6 @@ public class CoreVersion {
4040

4141
public static void check() {
4242
// Check the version of hugegraph-common
43-
VersionUtil.check(CommonVersion.VERSION, "1.0", "1.35", CommonVersion.NAME);
43+
VersionUtil.check(CommonVersion.VERSION, "1.0", "1.55", CommonVersion.NAME);
4444
}
4545
}

hugegraph-server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
<shell-executable>bash</shell-executable>
5858
<checkstyle.plugin.version>3.1.2</checkstyle.plugin.version>
5959
<checkstyle.version>8.45</checkstyle.version>
60-
<hugegraph-commons.version>1.2.0</hugegraph-commons.version>
60+
<hugegraph-commons.version>1.3.0</hugegraph-commons.version>
6161
<grpc.version>1.47.0</grpc.version>
6262
<protobuf.version>3.21.7</protobuf.version>
6363
<jmh.version>1.36</jmh.version>

pom.xml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@
2626
<name>${project.artifactId}</name>
2727
<url>https://github.com/apache/hugegraph</url>
2828
<description>
29-
HugeGraph is a fast-speed and highly scalable graph database.
29+
HugeGraph is a fast-speed and highly scalable graph database that supports more than 100 billion data, high
30+
performance and scalability (Include OLTP Engine &amp; REST-API &amp; Backends)
3031
</description>
3132

3233
<parent>
@@ -84,12 +85,8 @@
8485
<developerConnection>scm:git:https://github.com/apache/hugegraph.git</developerConnection>
8586
</scm>
8687

87-
<prerequisites>
88-
<maven>3.5.0</maven>
89-
</prerequisites>
90-
9188
<properties>
92-
<revision>1.2.0</revision>
89+
<revision>1.3.0</revision>
9390
</properties>
9491

9592
<modules>

0 commit comments

Comments
 (0)