This is an automated email from the ASF dual-hosted git repository.

chaokunyang pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/fory-site.git

commit 8e8c3ee7426594d26e5ca4f05402b22bbca00634
Author: chaokunyang <[email protected]>
AuthorDate: Thu May 21 06:48:28 2026 +0000

    πŸ”„ synced local 'docs/guide/' with remote 'docs/guide/'
---
 docs/guide/cpp/index.md                | 8 ++++----
 docs/guide/csharp/index.md             | 2 +-
 docs/guide/dart/index.md               | 2 +-
 docs/guide/java/compression.md         | 2 +-
 docs/guide/kotlin/index.md             | 4 ++--
 docs/guide/rust/basic-serialization.md | 2 +-
 docs/guide/rust/index.md               | 2 +-
 docs/guide/scala/index.md              | 2 +-
 docs/guide/xlang/getting-started.md    | 6 +++---
 9 files changed, 15 insertions(+), 15 deletions(-)

diff --git a/docs/guide/cpp/index.md b/docs/guide/cpp/index.md
index fba62ef411..9e628f89a1 100644
--- a/docs/guide/cpp/index.md
+++ b/docs/guide/cpp/index.md
@@ -62,7 +62,7 @@ include(FetchContent)
 FetchContent_Declare(
     fory
     GIT_REPOSITORY https://github.com/apache/fory.git
-    GIT_TAG        v0.17.0
+    GIT_TAG        v1.0.0
     SOURCE_SUBDIR  cpp
 )
 FetchContent_MakeAvailable(fory)
@@ -92,11 +92,11 @@ module(
 
 bazel_dep(name = "rules_cc", version = "0.1.1")
 
-bazel_dep(name = "fory", version = "0.17.0")
+bazel_dep(name = "fory", version = "1.0.0")
 git_override(
     module_name = "fory",
     remote = "https://github.com/apache/fory.git";,
-    commit = "v0.17.0",  # Or use a specific commit hash for reproducibility
+    commit = "v1.0.0",  # Or use a specific commit hash for reproducibility
 )
 ```
 
@@ -128,7 +128,7 @@ bazel run //:my_app
 For local development, you can use `local_path_override` instead:
 
 ```bazel
-bazel_dep(name = "fory", version = "0.17.0")
+bazel_dep(name = "fory", version = "1.0.0")
 local_path_override(
     module_name = "fory",
     path = "/path/to/fory",
diff --git a/docs/guide/csharp/index.md b/docs/guide/csharp/index.md
index d2c18aa009..531b8958a2 100644
--- a/docs/guide/csharp/index.md
+++ b/docs/guide/csharp/index.md
@@ -43,7 +43,7 @@ Reference the single `Apache.Fory` package. It includes the 
runtime and the sour
 
 ```xml
 <ItemGroup>
-  <PackageReference Include="Apache.Fory" Version="0.17.0" />
+  <PackageReference Include="Apache.Fory" Version="1.0.0" />
 </ItemGroup>
 ```
 
diff --git a/docs/guide/dart/index.md b/docs/guide/dart/index.md
index a92959bec7..c60016edbb 100644
--- a/docs/guide/dart/index.md
+++ b/docs/guide/dart/index.md
@@ -43,7 +43,7 @@ Add the dependency to your `pubspec.yaml`:
 
 ```yaml
 dependencies:
-  fory: ^0.17.0
+  fory: ^1.0.0
 
 dev_dependencies:
   build_runner: ^2.4.0
diff --git a/docs/guide/java/compression.md b/docs/guide/java/compression.md
index d8df9160bd..3888777f00 100644
--- a/docs/guide/java/compression.md
+++ b/docs/guide/java/compression.md
@@ -84,7 +84,7 @@ CompressedArraySerializers.registerSerializers(fory);
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-simd</artifactId>
-  <version>0.16.0</version>
+  <version>1.0.0</version>
 </dependency>
 ```
 
diff --git a/docs/guide/kotlin/index.md b/docs/guide/kotlin/index.md
index 784d103f60..139a71106d 100644
--- a/docs/guide/kotlin/index.md
+++ b/docs/guide/kotlin/index.md
@@ -52,14 +52,14 @@ See [Java Features](../java/index.md#features) for complete 
feature list.
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-kotlin</artifactId>
-  <version>0.17.0</version>
+  <version>1.0.0</version>
 </dependency>
 ```
 
 ### Gradle
 
 ```kotlin
-implementation("org.apache.fory:fory-kotlin:0.17.0")
+implementation("org.apache.fory:fory-kotlin:1.0.0")
 ```
 
 ## Quick Start
diff --git a/docs/guide/rust/basic-serialization.md 
b/docs/guide/rust/basic-serialization.md
index 12da159a67..7ae74db1cb 100644
--- a/docs/guide/rust/basic-serialization.md
+++ b/docs/guide/rust/basic-serialization.md
@@ -147,7 +147,7 @@ let later = timestamp.checked_add_duration(duration)?;
 
 ```toml
 [dependencies]
-fory = { version = "0.13", features = ["chrono"] }
+fory = { version = "1.0.0", features = ["chrono"] }
 ```
 
 ### Custom Types
diff --git a/docs/guide/rust/index.md b/docs/guide/rust/index.md
index dccd998644..e90aebce7e 100644
--- a/docs/guide/rust/index.md
+++ b/docs/guide/rust/index.md
@@ -47,7 +47,7 @@ Add Apache Foryβ„’ to your `Cargo.toml`:
 
 ```toml
 [dependencies]
-fory = "0.13"
+fory = "1.0.0"
 ```
 
 ### Basic Example
diff --git a/docs/guide/scala/index.md b/docs/guide/scala/index.md
index 0a77b168f6..668e3e38ac 100644
--- a/docs/guide/scala/index.md
+++ b/docs/guide/scala/index.md
@@ -49,7 +49,7 @@ See [Java Features](../java/index.md#features) for complete 
feature list.
 Add the dependency with sbt:
 
 ```sbt
-libraryDependencies += "org.apache.fory" %% "fory-scala" % "0.17.0"
+libraryDependencies += "org.apache.fory" %% "fory-scala" % "1.0.0"
 ```
 
 ## Quick Start
diff --git a/docs/guide/xlang/getting-started.md 
b/docs/guide/xlang/getting-started.md
index e21737606c..6fa858e747 100644
--- a/docs/guide/xlang/getting-started.md
+++ b/docs/guide/xlang/getting-started.md
@@ -31,14 +31,14 @@ This guide covers installation and basic setup for 
cross-language serialization
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-core</artifactId>
-  <version>0.17.0</version>
+  <version>1.0.0</version>
 </dependency>
 ```
 
 **Gradle:**
 
 ```gradle
-implementation 'org.apache.fory:fory-core:0.17.0'
+implementation 'org.apache.fory:fory-core:1.0.0'
 ```
 
 ### Python
@@ -57,7 +57,7 @@ go get github.com/apache/fory/go/fory
 
 ```toml
 [dependencies]
-fory = "0.13"
+fory = "1.0.0"
 ```
 
 ### JavaScript


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to