This is an automated email from the ASF dual-hosted git repository. jin pushed a commit to branch tiny in repository https://gitbox.apache.org/repos/asf/hugegraph.git
commit 78fa2102811feffabe1eeb1b2734c4244996d51f Author: imbajin <[email protected]> AuthorDate: Mon Mar 16 16:56:17 2026 +0800 doc: add comment for historical package names Add notes to README, hugegraph-store/README, and hugegraph-store/docs/deployment-guide indicating that historical releases (<= 1.7.0) used the "-incubating" suffix in package and directory names. --- README.md | 1 + hugegraph-store/README.md | 1 + hugegraph-store/docs/deployment-guide.md | 3 +++ 3 files changed, 5 insertions(+) diff --git a/README.md b/README.md index fd0d5224a..9f17902a9 100644 --- a/README.md +++ b/README.md @@ -223,6 +223,7 @@ Download pre-built packages from the [Download Page](https://hugegraph.apache.or ```bash # Download and extract +# Note: historical releases <= 1.7.0 still use the "-incubating" package name wget https://downloads.apache.org/hugegraph/{version}/apache-hugegraph-{version}.tar.gz tar -xzf apache-hugegraph-{version}.tar.gz cd apache-hugegraph-{version} diff --git a/hugegraph-store/README.md b/hugegraph-store/README.md index c3c738b3d..089fafc7b 100644 --- a/hugegraph-store/README.md +++ b/hugegraph-store/README.md @@ -214,6 +214,7 @@ Start the Store server: ```bash # Replace {version} with your hugegraph version +# Note: historical releases <= 1.7.0 still use the "-incubating" directory name cd apache-hugegraph-store-{version} # Start Store node diff --git a/hugegraph-store/docs/deployment-guide.md b/hugegraph-store/docs/deployment-guide.md index 409fd34c9..b41f402a0 100644 --- a/hugegraph-store/docs/deployment-guide.md +++ b/hugegraph-store/docs/deployment-guide.md @@ -416,6 +416,7 @@ df -h ```bash # Extract PD distribution +# Note: historical releases <= 1.7.0 still use the "-incubating" package/directory names tar -xzf apache-hugegraph-pd-1.7.0.tar.gz cd apache-hugegraph-pd-1.7.0 @@ -509,6 +510,7 @@ curl http://192.168.1.10:8620/v1/members ```bash # Extract Store distribution +# Note: historical releases <= 1.7.0 still use the "-incubating" package/directory names tar -xzf apache-hugegraph-store-1.7.0.tar.gz cd apache-hugegraph-store-1.7.0 @@ -626,6 +628,7 @@ curl http://192.168.1.10:8620/v1/stores ```bash # Extract Server distribution +# Note: historical releases <= 1.7.0 still use the "-incubating" package/directory names tar -xzf apache-hugegraph-1.7.0.tar.gz cd apache-hugegraph-1.7.0
