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 858bdad711b5df49be5a7ea43a78aaf54f9c225e
Author: chaokunyang <[email protected]>
AuthorDate: Fri Sep 4 06:12:42 2026 +0000

    πŸ”„ synced local 'docs/object-serialization/' with remote 
'docs/object-serialization/'
---
 docs/object-serialization/cpp/index.md                | 8 ++++----
 docs/object-serialization/csharp/index.md             | 2 +-
 docs/object-serialization/dart/index.md               | 2 +-
 docs/object-serialization/java/index.md               | 4 ++--
 docs/object-serialization/kotlin/index.md             | 4 ++--
 docs/object-serialization/rust/basic-serialization.md | 2 +-
 docs/object-serialization/rust/index.md               | 8 ++++----
 docs/object-serialization/scala/index.md              | 2 +-
 8 files changed, 16 insertions(+), 16 deletions(-)

diff --git a/docs/object-serialization/cpp/index.md 
b/docs/object-serialization/cpp/index.md
index df2ad692e60..4e2632510f3 100644
--- a/docs/object-serialization/cpp/index.md
+++ b/docs/object-serialization/cpp/index.md
@@ -62,7 +62,7 @@ include(FetchContent)
 FetchContent_Declare(
     fory
     GIT_REPOSITORY https://github.com/apache/fory.git
-    GIT_TAG        v1.7.0
+    GIT_TAG        v1.7.1
     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 = "1.7.0")
+bazel_dep(name = "fory", version = "1.7.1")
 git_override(
     module_name = "fory",
     remote = "https://github.com/apache/fory.git";,
-    commit = "v1.7.0",  # Or use a specific commit hash for reproducibility
+    commit = "v1.7.1",  # 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 = "1.7.0")
+bazel_dep(name = "fory", version = "1.7.1")
 local_path_override(
     module_name = "fory",
     path = "/path/to/fory",
diff --git a/docs/object-serialization/csharp/index.md 
b/docs/object-serialization/csharp/index.md
index 30933c6ff15..291ae18baa3 100644
--- a/docs/object-serialization/csharp/index.md
+++ b/docs/object-serialization/csharp/index.md
@@ -46,7 +46,7 @@ Reference the single `Apache.Fory` package. It includes the 
Fory library and the
 
 ```xml
 <ItemGroup>
-  <PackageReference Include="Apache.Fory" Version="1.7.0" />
+  <PackageReference Include="Apache.Fory" Version="1.7.1" />
 </ItemGroup>
 ```
 
diff --git a/docs/object-serialization/dart/index.md 
b/docs/object-serialization/dart/index.md
index 9d6c20497e5..2f48d6f9531 100644
--- a/docs/object-serialization/dart/index.md
+++ b/docs/object-serialization/dart/index.md
@@ -47,7 +47,7 @@ Add the dependency to your `pubspec.yaml`:
 
 ```yaml
 dependencies:
-  fory: ^1.7.0
+  fory: ^1.7.1
 
 dev_dependencies:
   build_runner: ^2.4.0
diff --git a/docs/object-serialization/java/index.md 
b/docs/object-serialization/java/index.md
index a984be804f9..13ee77a3f5c 100644
--- a/docs/object-serialization/java/index.md
+++ b/docs/object-serialization/java/index.md
@@ -63,7 +63,7 @@ or later.
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-core</artifactId>
-  <version>1.7.0</version>
+  <version>1.7.1</version>
 </dependency>
 ```
 
@@ -71,7 +71,7 @@ or later.
 
 ```kotlin
 // Binary object serialization
-implementation("org.apache.fory:fory-core:1.7.0")
+implementation("org.apache.fory:fory-core:1.7.1")
 ```
 
 #### JDK 25 and Later
diff --git a/docs/object-serialization/kotlin/index.md 
b/docs/object-serialization/kotlin/index.md
index 57d00d20e8c..62cb4cc6a3b 100644
--- a/docs/object-serialization/kotlin/index.md
+++ b/docs/object-serialization/kotlin/index.md
@@ -53,14 +53,14 @@ See [Java Features](../java/index.md#features) for complete 
feature list.
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-kotlin</artifactId>
-  <version>1.7.0</version>
+  <version>1.7.1</version>
 </dependency>
 ```
 
 ### Gradle
 
 ```kotlin
-implementation("org.apache.fory:fory-kotlin:1.7.0")
+implementation("org.apache.fory:fory-kotlin:1.7.1")
 ```
 
 ### JDK25+
diff --git a/docs/object-serialization/rust/basic-serialization.md 
b/docs/object-serialization/rust/basic-serialization.md
index 6945bfc5d28..73b01a5877e 100644
--- a/docs/object-serialization/rust/basic-serialization.md
+++ b/docs/object-serialization/rust/basic-serialization.md
@@ -147,7 +147,7 @@ let later = timestamp.checked_add_duration(duration)?;
 
 ```toml
 [dependencies]
-fory = { version = "1.7.0", features = ["chrono"] }
+fory = { version = "1.7.1", features = ["chrono"] }
 ```
 
 ### Custom Types
diff --git a/docs/object-serialization/rust/index.md 
b/docs/object-serialization/rust/index.md
index cc0da34599f..d60c058aeaf 100644
--- a/docs/object-serialization/rust/index.md
+++ b/docs/object-serialization/rust/index.md
@@ -37,9 +37,9 @@ The Rust implementation provides versatile and 
high-performance serialization wi
 
 | Crate                                                                       
| Description                                           | Version               
                        |
 | --------------------------------------------------------------------------- 
| ----------------------------------------------------- | 
--------------------------------------------- |
-| [`fory`](https://github.com/apache/fory/blob/main/rust/fory)                
| User-facing API, public Fory types, and derive macros | 
[1.7.0](https://crates.io/crates/fory)        |
-| [`fory-core`](https://github.com/apache/fory/blob/main/rust/fory-core/)     
| Lower-level core crate for advanced integrations      | 
[1.7.0](https://crates.io/crates/fory-core)   |
-| [`fory-derive`](https://github.com/apache/fory/blob/main/rust/fory-derive/) 
| Procedural macro crate for direct derive-macro use    | 
[1.7.0](https://crates.io/crates/fory-derive) |
+| [`fory`](https://github.com/apache/fory/blob/main/rust/fory)                
| User-facing API, public Fory types, and derive macros | 
[1.7.1](https://crates.io/crates/fory)        |
+| [`fory-core`](https://github.com/apache/fory/blob/main/rust/fory-core/)     
| Lower-level core crate for advanced integrations      | 
[1.7.1](https://crates.io/crates/fory-core)   |
+| [`fory-derive`](https://github.com/apache/fory/blob/main/rust/fory-derive/) 
| Procedural macro crate for direct derive-macro use    | 
[1.7.1](https://crates.io/crates/fory-derive) |
 
 Most applications should depend on `fory` only. It re-exports the derive
 macros and the public Fory types needed by generated code. Use `fory-core`
@@ -52,7 +52,7 @@ Add Apache Foryβ„’ to your `Cargo.toml`:
 
 ```toml
 [dependencies]
-fory = "1.7.0"
+fory = "1.7.1"
 ```
 
 ### Basic Example
diff --git a/docs/object-serialization/scala/index.md 
b/docs/object-serialization/scala/index.md
index 7288a51f388..5785ad8059f 100644
--- a/docs/object-serialization/scala/index.md
+++ b/docs/object-serialization/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" % "1.7.0"
+libraryDependencies += "org.apache.fory" %% "fory-scala" % "1.7.1"
 ```
 
 ### JDK25+


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

Reply via email to