Skip to content

Commit 2843d4c

Browse files
imbajinVGalaxies
authored andcommitted
chore: upgrade to 1.3.0 (last major version support Java8)
fix
1 parent 50ae4de commit 2843d4c

File tree

7 files changed

+8
-11
lines changed

7 files changed

+8
-11
lines changed

.github/workflows/check-dependencies.yml

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -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

+1-1
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

+2-5
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,10 +85,6 @@
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>
9289
<!-- NOTE: Mac with M-series chip users can add this line below to avoid dependencies-resolving problems -->
9390
<!-- <os.detected.classifier>osx-x86_64</os.detected.classifier>-->

0 commit comments

Comments
 (0)