Skip to content

Commit

Permalink
chore: upgrade to 1.3.0 (last major version support Java8)
Browse files Browse the repository at this point in the history
fix
  • Loading branch information
imbajin authored and VGalaxies committed Apr 3, 2024
1 parent 50ae4de commit 2843d4c
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
dependency-check:
runs-on: ubuntu-latest
env:
USE_STAGE: 'false' # Whether to include the stage repository.
USE_STAGE: 'true' # Whether to include the stage repository.
SCRIPT_DEPENDENCY: hugegraph-server/hugegraph-dist/scripts/dependency
steps:
- name: Checkout source
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
# TODO: we need test & replace it to ubuntu-24.04 or ubuntu-latest
runs-on: ubuntu-20.04
env:
USE_STAGE: 'false' # Whether to include the stage repository.
USE_STAGE: 'true' # Whether to include the stage repository.
TRAVIS_DIR: hugegraph-server/hugegraph-dist/src/assembly/travis
REPORT_DIR: target/site/jacoco
BACKEND: ${{ matrix.BACKEND }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
jobs:
analyze:
env:
USE_STAGE: 'false' # Whether to include the stage repository.
USE_STAGE: 'true' # Whether to include the stage repository.
name: Analyze
runs-on: ubuntu-latest
permissions:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/licence-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
check-license:
runs-on: ubuntu-latest
env:
USE_STAGE: 'false' # Whether to include the stage repository.
USE_STAGE: 'true' # Whether to include the stage repository.
steps:
- uses: actions/checkout@v4

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ public class CoreVersion {

public static void check() {
// Check the version of hugegraph-common
VersionUtil.check(CommonVersion.VERSION, "1.0", "1.35", CommonVersion.NAME);
VersionUtil.check(CommonVersion.VERSION, "1.0", "1.55", CommonVersion.NAME);
}
}
2 changes: 1 addition & 1 deletion hugegraph-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
<shell-executable>bash</shell-executable>
<checkstyle.plugin.version>3.1.2</checkstyle.plugin.version>
<checkstyle.version>8.45</checkstyle.version>
<hugegraph-commons.version>1.2.0</hugegraph-commons.version>
<hugegraph-commons.version>1.3.0</hugegraph-commons.version>
<grpc.version>1.47.0</grpc.version>
<protobuf.version>3.21.7</protobuf.version>
<jmh.version>1.36</jmh.version>
Expand Down
7 changes: 2 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
<name>${project.artifactId}</name>
<url>https://github.com/apache/hugegraph</url>
<description>
HugeGraph is a fast-speed and highly scalable graph database.
HugeGraph is a fast-speed and highly scalable graph database that supports more than 100 billion data, high
performance and scalability (Include OLTP Engine &amp; REST-API &amp; Backends)
</description>

<parent>
Expand Down Expand Up @@ -84,10 +85,6 @@
<developerConnection>scm:git:https://github.com/apache/hugegraph.git</developerConnection>
</scm>

<prerequisites>
<maven>3.5.0</maven>
</prerequisites>

<properties>
<!-- NOTE: Mac with M-series chip users can add this line below to avoid dependencies-resolving problems -->
<!-- <os.detected.classifier>osx-x86_64</os.detected.classifier>-->
Expand Down

0 comments on commit 2843d4c

Please sign in to comment.