Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: upgrade version to 1.3.0 #305

Merged
merged 5 commits into from
Mar 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
computer-ci:
runs-on: ubuntu-latest
env:
USE_STAGE: 'false' # Whether to include the stage repository.
USE_STAGE: 'true' # Whether to include the stage repository.
TRAVIS_DIR: computer-dist/src/assembly/travis
KUBERNETES_VERSION: 1.20.1
BSP_ETCD_URL: http://localhost:2579
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 @@ -13,7 +13,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/license-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
runs-on: ubuntu-latest
env:
SCRIPT_DEPENDENCY: computer-dist/scripts/dependency
USE_STAGE: 'false' # Whether to include the stage repository.
USE_STAGE: 'true' # Whether to include the stage repository.
steps:
- name: Checkout source
uses: actions/checkout@v4
Expand Down
16 changes: 8 additions & 8 deletions computer-dist/scripts/dependency/known-dependencies.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ commons-logging-1.1.3.jar
commons-math3-3.1.1.jar
commons-net-3.6.jar
commons-text-1.9.jar
computer-algorithm-1.2.0.jar
computer-api-1.2.0.jar
computer-core-1.2.0.jar
computer-dist-1.2.0.jar
computer-driver-1.2.0.jar
computer-k8s-1.2.0.jar
computer-k8s-operator-1.2.0.jar
computer-yarn-1.2.0.jar
computer-algorithm-1.3.0.jar
computer-api-1.3.0.jar
computer-core-1.3.0.jar
computer-dist-1.3.0.jar
computer-driver-1.3.0.jar
computer-k8s-1.3.0.jar
computer-k8s-operator-1.3.0.jar
computer-yarn-1.3.0.jar
curator-client-2.13.0.jar
curator-framework-2.13.0.jar
curator-recipes-2.13.0.jar
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -92,11 +92,11 @@

<properties>
<!-- TODO: update the version after toolchain v1.2 fixed -->
<revision>1.2.0</revision>
<hugegraph-common-version>1.2.0</hugegraph-common-version>
<hugegraph-client-version>1.2.0</hugegraph-client-version>
<hugegraph-rpc-version>1.2.0</hugegraph-rpc-version>
<hugegraph-loader-version>1.2.0</hugegraph-loader-version>
<revision>1.3.0</revision>
<hugegraph-common-version>1.3.0</hugegraph-common-version>
<hugegraph-client-version>1.3.0</hugegraph-client-version>
<hugegraph-rpc-version>1.3.0</hugegraph-rpc-version>
<hugegraph-loader-version>1.3.0</hugegraph-loader-version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<top.level.dir>${project.basedir}/..</top.level.dir>
<release.name>hugegraph-computer</release.name>
Expand Down
Loading