docs: update release version to 1.7.4 (#4065)

Update README, installation guides, and examples to recommend Apache
Fory 1.7.4 after the RC1 vote passed. Keep the existing 1.8.0
development package versions unchanged.

Validation: ran the repository version-bump script with `-version
1.8.0-dev -release-version 1.7.4`, formatted changed Markdown, and
verified all 86 replacements are version-only. `git diff --check`
passed. No local builds or tests were run for this documentation-only
change.
diff --git a/README.md b/README.md
index 6159930..cf80a10 100644
--- a/README.md
+++ b/README.md
@@ -6,7 +6,7 @@
 [![Slack Channel](https://img.shields.io/badge/slack-join-3f0e40?logo=slack&style=for-the-badge)](https://join.slack.com/t/fory-project/shared_invite/zt-36g0qouzm-kcQSvV_dtfbtBKHRwT5gsw)
 [![X](https://img.shields.io/badge/@ApacheFory-follow-blue?logo=x&style=for-the-badge)](https://x.com/ApacheFory)
 [![Maven Version](https://img.shields.io/maven-central/v/org.apache.fory/fory-core?style=for-the-badge)](https://search.maven.org/#search|gav|1|g:"org.apache.fory"%20AND%20a:"fory-core")
-[![Crates.io](https://img.shields.io/badge/crates.io-v1.7.3-blue?logo=rust&style=for-the-badge)](https://crates.io/crates/fory)
+[![Crates.io](https://img.shields.io/badge/crates.io-v1.7.4-blue?logo=rust&style=for-the-badge)](https://crates.io/crates/fory)
 [![PyPI](https://img.shields.io/pypi/v/pyfory.svg?logo=PyPI&style=for-the-badge)](https://pypi.org/project/pyfory/)
 [![npm](https://img.shields.io/npm/v/%40apache-fory%2Fcore?logo=npm&style=for-the-badge)](https://www.npmjs.com/package/@apache-fory/core)
 [![NuGet](https://img.shields.io/nuget/v/Apache.Fory?logo=nuget&style=for-the-badge)](https://www.nuget.org/packages/Apache.Fory)
@@ -150,14 +150,14 @@
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-core</artifactId>
-  <version>1.7.3</version>
+  <version>1.7.4</version>
 </dependency>
 ```
 
 Gradle:
 
 ```gradle
-implementation "org.apache.fory:fory-core:1.7.3"
+implementation "org.apache.fory:fory-core:1.7.4"
 ```
 
 On JDK25+, opening `java.lang.invoke` to Fory core is also recommended. It avoids the
@@ -179,7 +179,7 @@
 sbt:
 
 ```scala
-libraryDependencies += "org.apache.fory" %% "fory-scala" % "1.7.3"
+libraryDependencies += "org.apache.fory" %% "fory-scala" % "1.7.4"
 ```
 
 **Kotlin**
@@ -187,7 +187,7 @@
 Gradle:
 
 ```kotlin
-implementation("org.apache.fory:fory-kotlin:1.7.3")
+implementation("org.apache.fory:fory-kotlin:1.7.4")
 ```
 
 Maven:
@@ -196,7 +196,7 @@
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-kotlin</artifactId>
-  <version>1.7.3</version>
+  <version>1.7.4</version>
 </dependency>
 ```
 
@@ -218,7 +218,7 @@
 
 ```toml
 [dependencies]
-fory = "1.7.3"
+fory = "1.7.4"
 ```
 
 **C++**
@@ -230,7 +230,7 @@
 FetchContent_Declare(
   fory
   GIT_REPOSITORY https://github.com/apache/fory.git
-  GIT_TAG v1.7.3
+  GIT_TAG v1.7.4
   SOURCE_SUBDIR cpp
 )
 FetchContent_MakeAvailable(fory)
@@ -241,8 +241,8 @@
 
 ```bazel
 # MODULE.bazel
-bazel_dep(name = "fory", version = "1.7.3")
-git_override(module_name = "fory", remote = "https://github.com/apache/fory.git", commit = "v1.7.3")
+bazel_dep(name = "fory", version = "1.7.4")
+git_override(module_name = "fory", remote = "https://github.com/apache/fory.git", commit = "v1.7.4")
 
 # BUILD
 deps = ["@fory//cpp/fory/serialization:fory_serialization"]
@@ -275,13 +275,13 @@
 **C#**
 
 ```bash
-dotnet add package Apache.Fory --version 1.7.3
+dotnet add package Apache.Fory --version 1.7.4
 ```
 
 **Dart**
 
 ```bash
-dart pub add fory:^1.7.3
+dart pub add fory:^1.7.4
 dart pub add dev:build_runner
 ```
 
@@ -291,7 +291,7 @@
 
 ```swift
 dependencies: [
-  .package(url: "https://github.com/apache/fory.git", exact: "1.7.3")
+  .package(url: "https://github.com/apache/fory.git", exact: "1.7.4")
 ],
 targets: [
   .target(
@@ -862,14 +862,14 @@
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-json</artifactId>
-  <version>1.7.3</version>
+  <version>1.7.4</version>
 </dependency>
 ```
 
 **Gradle**
 
 ```gradle
-implementation "org.apache.fory:fory-json:1.7.3"
+implementation "org.apache.fory:fory-json:1.7.4"
 ```
 
 Keep all Fory modules in the same application on the same version.
diff --git a/csharp/README.md b/csharp/README.md
index 9618600..23e3a0f 100644
--- a/csharp/README.md
+++ b/csharp/README.md
@@ -32,7 +32,7 @@
 
 ```xml
 <ItemGroup>
-  <PackageReference Include="Apache.Fory" Version="1.7.3" />
+  <PackageReference Include="Apache.Fory" Version="1.7.4" />
 </ItemGroup>
 ```
 
diff --git a/dart/packages/fory/README.md b/dart/packages/fory/README.md
index bbb9696..47e2513 100644
--- a/dart/packages/fory/README.md
+++ b/dart/packages/fory/README.md
@@ -25,7 +25,7 @@
 
 ```yaml
 dependencies:
-  fory: ^1.7.3
+  fory: ^1.7.4
 
 dev_dependencies:
   build_runner: ^2.4.13
diff --git a/docs/compiler/build-integration.md b/docs/compiler/build-integration.md
index 0cb0560..d8becff 100644
--- a/docs/compiler/build-integration.md
+++ b/docs/compiler/build-integration.md
@@ -211,7 +211,7 @@
 
 ```yaml
 dependencies:
-  fory: ^1.7.3
+  fory: ^1.7.4
 
 dev_dependencies:
   build_runner: ^2.4.0
diff --git a/docs/compiler/cli.md b/docs/compiler/cli.md
index 804c890..f444d7c 100644
--- a/docs/compiler/cli.md
+++ b/docs/compiler/cli.md
@@ -689,5 +689,5 @@
 
 ```yaml
 dependencies:
-  fory: ^1.7.3
+  fory: ^1.7.4
 ```
diff --git a/docs/grpc/csharp.md b/docs/grpc/csharp.md
index fbd4f40..4b84152 100644
--- a/docs/grpc/csharp.md
+++ b/docs/grpc/csharp.md
@@ -39,7 +39,7 @@
 
 ```xml
 <ItemGroup>
-  <PackageReference Include="Apache.Fory" Version="1.7.3" />
+  <PackageReference Include="Apache.Fory" Version="1.7.4" />
   <PackageReference Include="Grpc.AspNetCore" Version="2.71.0" />
 </ItemGroup>
 ```
@@ -48,7 +48,7 @@
 
 ```xml
 <ItemGroup>
-  <PackageReference Include="Apache.Fory" Version="1.7.3" />
+  <PackageReference Include="Apache.Fory" Version="1.7.4" />
   <PackageReference Include="Grpc.Core.Api" Version="2.71.0" />
   <PackageReference Include="Grpc.Net.Client" Version="2.71.0" />
 </ItemGroup>
diff --git a/docs/grpc/dart.md b/docs/grpc/dart.md
index 669c9d9..af6c82a 100644
--- a/docs/grpc/dart.md
+++ b/docs/grpc/dart.md
@@ -38,7 +38,7 @@
 
 ```yaml
 dependencies:
-  fory: ^1.7.3
+  fory: ^1.7.4
   grpc: ^4.0.0
 
 dev_dependencies:
diff --git a/docs/grpc/rust.md b/docs/grpc/rust.md
index fccfac1..6558ca9 100644
--- a/docs/grpc/rust.md
+++ b/docs/grpc/rust.md
@@ -37,7 +37,7 @@
 
 ```toml
 [dependencies]
-fory = "1.7.3"
+fory = "1.7.4"
 bytes = "1"
 tonic = { version = "0.14", features = ["transport"] }
 tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
diff --git a/docs/json/getting-started.md b/docs/json/getting-started.md
index 362173d..18516d9 100644
--- a/docs/json/getting-started.md
+++ b/docs/json/getting-started.md
@@ -43,7 +43,7 @@
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-json</artifactId>
-  <version>1.7.3</version>
+  <version>1.7.4</version>
 </dependency>
 ```
 
@@ -57,7 +57,7 @@
   mavenCentral()
 }
 
-implementation("org.apache.fory:fory-json:1.7.3")
+implementation("org.apache.fory:fory-json:1.7.4")
 ```
 
 ### Kotlin
@@ -66,7 +66,7 @@
 
 ```kotlin title="build.gradle.kts"
 dependencies {
-  implementation("org.apache.fory:fory-json-kotlin:1.7.3")
+  implementation("org.apache.fory:fory-json-kotlin:1.7.4")
 }
 ```
 
diff --git a/docs/json/kotlin.md b/docs/json/kotlin.md
index e45d3b3..1b75007 100644
--- a/docs/json/kotlin.md
+++ b/docs/json/kotlin.md
@@ -41,7 +41,7 @@
 }
 
 dependencies {
-  implementation("org.apache.fory:fory-json-kotlin:1.7.3")
+  implementation("org.apache.fory:fory-json-kotlin:1.7.4")
 }
 ```
 
@@ -54,7 +54,7 @@
 }
 
 dependencies {
-  ksp("org.apache.fory:fory-json-kotlin-ksp:1.7.3")
+  ksp("org.apache.fory:fory-json-kotlin-ksp:1.7.4")
 }
 ```
 
diff --git a/docs/json/scala.md b/docs/json/scala.md
index f3a9b8c..f24277a 100644
--- a/docs/json/scala.md
+++ b/docs/json/scala.md
@@ -25,7 +25,7 @@
 ## Setup
 
 ```sbt
-libraryDependencies += "org.apache.fory" %% "fory-json-scala" % "1.7.3"
+libraryDependencies += "org.apache.fory" %% "fory-json-scala" % "1.7.4"
 ```
 
 `ForyJsonScala.builder()` installs the Scala module and returns the standard Fory JSON builder:
diff --git a/docs/object-serialization/cpp/index.md b/docs/object-serialization/cpp/index.md
index cc2f763..66050e7 100644
--- a/docs/object-serialization/cpp/index.md
+++ b/docs/object-serialization/cpp/index.md
@@ -62,7 +62,7 @@
 FetchContent_Declare(
     fory
     GIT_REPOSITORY https://github.com/apache/fory.git
-    GIT_TAG        v1.7.3
+    GIT_TAG        v1.7.4
     SOURCE_SUBDIR  cpp
 )
 FetchContent_MakeAvailable(fory)
@@ -92,11 +92,11 @@
 
 bazel_dep(name = "rules_cc", version = "0.1.1")
 
-bazel_dep(name = "fory", version = "1.7.3")
+bazel_dep(name = "fory", version = "1.7.4")
 git_override(
     module_name = "fory",
     remote = "https://github.com/apache/fory.git",
-    commit = "v1.7.3",  # Or use a specific commit hash for reproducibility
+    commit = "v1.7.4",  # Or use a specific commit hash for reproducibility
 )
 ```
 
@@ -128,7 +128,7 @@
 For local development, you can use `local_path_override` instead:
 
 ```bazel
-bazel_dep(name = "fory", version = "1.7.3")
+bazel_dep(name = "fory", version = "1.7.4")
 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 957a2da..603deff 100644
--- a/docs/object-serialization/csharp/index.md
+++ b/docs/object-serialization/csharp/index.md
@@ -46,7 +46,7 @@
 
 ```xml
 <ItemGroup>
-  <PackageReference Include="Apache.Fory" Version="1.7.3" />
+  <PackageReference Include="Apache.Fory" Version="1.7.4" />
 </ItemGroup>
 ```
 
diff --git a/docs/object-serialization/dart/index.md b/docs/object-serialization/dart/index.md
index a08544d..ca9d6cc 100644
--- a/docs/object-serialization/dart/index.md
+++ b/docs/object-serialization/dart/index.md
@@ -47,7 +47,7 @@
 
 ```yaml
 dependencies:
-  fory: ^1.7.3
+  fory: ^1.7.4
 
 dev_dependencies:
   build_runner: ^2.4.0
diff --git a/docs/object-serialization/java/index.md b/docs/object-serialization/java/index.md
index 6fbdd47..69d11b0 100644
--- a/docs/object-serialization/java/index.md
+++ b/docs/object-serialization/java/index.md
@@ -63,7 +63,7 @@
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-core</artifactId>
-  <version>1.7.3</version>
+  <version>1.7.4</version>
 </dependency>
 ```
 
@@ -71,7 +71,7 @@
 
 ```kotlin
 // Binary object serialization
-implementation("org.apache.fory:fory-core:1.7.3")
+implementation("org.apache.fory:fory-core:1.7.4")
 ```
 
 #### JDK 25 and Later
diff --git a/docs/object-serialization/kotlin/index.md b/docs/object-serialization/kotlin/index.md
index 6011598..a5ba5e6 100644
--- a/docs/object-serialization/kotlin/index.md
+++ b/docs/object-serialization/kotlin/index.md
@@ -53,14 +53,14 @@
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-kotlin</artifactId>
-  <version>1.7.3</version>
+  <version>1.7.4</version>
 </dependency>
 ```
 
 ### Gradle
 
 ```kotlin
-implementation("org.apache.fory:fory-kotlin:1.7.3")
+implementation("org.apache.fory:fory-kotlin:1.7.4")
 ```
 
 ### JDK25+
diff --git a/docs/object-serialization/rust/basic-serialization.md b/docs/object-serialization/rust/basic-serialization.md
index d9b0e17..b26fe0c 100644
--- a/docs/object-serialization/rust/basic-serialization.md
+++ b/docs/object-serialization/rust/basic-serialization.md
@@ -147,7 +147,7 @@
 
 ```toml
 [dependencies]
-fory = { version = "1.7.3", features = ["chrono"] }
+fory = { version = "1.7.4", features = ["chrono"] }
 ```
 
 ### Custom Types
diff --git a/docs/object-serialization/rust/index.md b/docs/object-serialization/rust/index.md
index 19f7b23..eaba9f7 100644
--- a/docs/object-serialization/rust/index.md
+++ b/docs/object-serialization/rust/index.md
@@ -37,9 +37,9 @@
 
 | Crate                                                                       | Description                                           | Version                                       |
 | --------------------------------------------------------------------------- | ----------------------------------------------------- | --------------------------------------------- |
-| [`fory`](https://github.com/apache/fory/blob/main/rust/fory)                | User-facing API, public Fory types, and derive macros | [1.7.3](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.3](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.3](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.4](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.4](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.4](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 @@
 
 ```toml
 [dependencies]
-fory = "1.7.3"
+fory = "1.7.4"
 ```
 
 ### Basic Example
diff --git a/docs/object-serialization/scala/index.md b/docs/object-serialization/scala/index.md
index d9908b1..edc6181 100644
--- a/docs/object-serialization/scala/index.md
+++ b/docs/object-serialization/scala/index.md
@@ -49,7 +49,7 @@
 Add the dependency with sbt:
 
 ```sbt
-libraryDependencies += "org.apache.fory" %% "fory-scala" % "1.7.3"
+libraryDependencies += "org.apache.fory" %% "fory-scala" % "1.7.4"
 ```
 
 ### JDK25+
diff --git a/docs/row-format/java.md b/docs/row-format/java.md
index 0349bc9..846df1d 100644
--- a/docs/row-format/java.md
+++ b/docs/row-format/java.md
@@ -43,14 +43,14 @@
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-format</artifactId>
-  <version>1.7.3</version>
+  <version>1.7.4</version>
 </dependency>
 ```
 
 For Gradle:
 
 ```kotlin
-implementation("org.apache.fory:fory-format:1.7.3")
+implementation("org.apache.fory:fory-format:1.7.4")
 ```
 
 ## Basic Usage
diff --git a/docs/start/cpp.md b/docs/start/cpp.md
index aeeff27..9efa5a1 100644
--- a/docs/start/cpp.md
+++ b/docs/start/cpp.md
@@ -45,7 +45,7 @@
 FetchContent_Declare(
   fory
   GIT_REPOSITORY https://github.com/apache/fory.git
-  GIT_TAG v1.7.3
+  GIT_TAG v1.7.4
   SOURCE_SUBDIR cpp
 )
 FetchContent_MakeAvailable(fory)
diff --git a/docs/start/csharp.md b/docs/start/csharp.md
index 94df569..5562e63 100644
--- a/docs/start/csharp.md
+++ b/docs/start/csharp.md
@@ -36,7 +36,7 @@
 ```bash
 dotnet new console -n ForyExample
 cd ForyExample
-dotnet add package Apache.Fory --version 1.7.3
+dotnet add package Apache.Fory --version 1.7.4
 ```
 
 Replace `Program.cs` with:
diff --git a/docs/start/dart.md b/docs/start/dart.md
index 01b1335..d301e6d 100644
--- a/docs/start/dart.md
+++ b/docs/start/dart.md
@@ -36,7 +36,7 @@
 
 ```yaml
 dependencies:
-  fory: 1.7.3
+  fory: 1.7.4
 
 dev_dependencies:
   build_runner: ^2.4.0
diff --git a/docs/start/go.md b/docs/start/go.md
index 3dbe1df..159215a 100644
--- a/docs/start/go.md
+++ b/docs/start/go.md
@@ -38,7 +38,7 @@
 mkdir fory-example
 cd fory-example
 go mod init example.com/fory-example
-go get github.com/apache/fory/go/fory@v1.7.3
+go get github.com/apache/fory/go/fory@v1.7.4
 ```
 
 If a Go proxy has not picked up a new submodule tag yet, retry later or use
diff --git a/docs/start/java.md b/docs/start/java.md
index 907631e..0f3561a 100644
--- a/docs/start/java.md
+++ b/docs/start/java.md
@@ -44,14 +44,14 @@
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-core</artifactId>
-  <version>1.7.3</version>
+  <version>1.7.4</version>
 </dependency>
 ```
 
 Gradle:
 
 ```kotlin
-implementation("org.apache.fory:fory-core:1.7.3")
+implementation("org.apache.fory:fory-core:1.7.4")
 ```
 
 Run this complete xlang round trip:
@@ -97,7 +97,7 @@
 `fory-json` instead of `fory-core` when the application only needs JSON:
 
 ```kotlin
-implementation("org.apache.fory:fory-json:1.7.3")
+implementation("org.apache.fory:fory-json:1.7.4")
 ```
 
 Add the import to `ForyExample.java`:
diff --git a/docs/start/javascript.md b/docs/start/javascript.md
index 1fee970..61f35e4 100644
--- a/docs/start/javascript.md
+++ b/docs/start/javascript.md
@@ -36,7 +36,7 @@
 Install the core package:
 
 ```bash
-npm install @apache-fory/core@1.7.3
+npm install @apache-fory/core@1.7.4
 ```
 
 Define a schema and run an xlang round trip:
@@ -72,7 +72,7 @@
 For the optional Node.js string fast path, install the matching package version:
 
 ```bash
-npm install @apache-fory/core@1.7.3 @apache-fory/hps@1.7.3
+npm install @apache-fory/core@1.7.4 @apache-fory/hps@1.7.4
 ```
 
 ## Other Capabilities
diff --git a/docs/start/kotlin.md b/docs/start/kotlin.md
index 9775d65..7230f96 100644
--- a/docs/start/kotlin.md
+++ b/docs/start/kotlin.md
@@ -44,7 +44,7 @@
 }
 
 dependencies {
-  implementation("org.apache.fory:fory-kotlin:1.7.3")
+  implementation("org.apache.fory:fory-kotlin:1.7.4")
 }
 ```
 
@@ -88,7 +88,7 @@
 
 ```kotlin title="build.gradle.kts"
 dependencies {
-  implementation("org.apache.fory:fory-json-kotlin:1.7.3")
+  implementation("org.apache.fory:fory-json-kotlin:1.7.4")
 }
 ```
 
diff --git a/docs/start/python.md b/docs/start/python.md
index b4ec209..98edf7f 100644
--- a/docs/start/python.md
+++ b/docs/start/python.md
@@ -35,7 +35,7 @@
 Install the released package:
 
 ```bash
-python -m pip install pyfory==1.7.3
+python -m pip install pyfory==1.7.4
 ```
 
 Run an xlang round trip:
diff --git a/docs/start/rust.md b/docs/start/rust.md
index 07077d7..0ff8cc2 100644
--- a/docs/start/rust.md
+++ b/docs/start/rust.md
@@ -36,7 +36,7 @@
 
 ```toml title="Cargo.toml"
 [dependencies]
-fory = "1.7.3"
+fory = "1.7.4"
 ```
 
 ```rust
diff --git a/docs/start/scala.md b/docs/start/scala.md
index c57d548..24404d1 100644
--- a/docs/start/scala.md
+++ b/docs/start/scala.md
@@ -37,7 +37,7 @@
 
 ```sbt
 ThisBuild / scalaVersion := "3.3.1"
-libraryDependencies += "org.apache.fory" %% "fory-scala" % "1.7.3"
+libraryDependencies += "org.apache.fory" %% "fory-scala" % "1.7.4"
 ```
 
 Create `src/main/scala/ScalaExample.scala`:
diff --git a/docs/start/swift.md b/docs/start/swift.md
index eed11e9..ae51562 100644
--- a/docs/start/swift.md
+++ b/docs/start/swift.md
@@ -42,7 +42,7 @@
 
 ```swift title="Package.swift"
 dependencies: [
-    .package(url: "https://github.com/apache/fory.git", exact: "1.7.3")
+    .package(url: "https://github.com/apache/fory.git", exact: "1.7.4")
 ],
 targets: [
     .executableTarget(
diff --git a/examples/cpp/hello_row/MODULE.bazel.example b/examples/cpp/hello_row/MODULE.bazel.example
index b3abf67..3a7da82 100644
--- a/examples/cpp/hello_row/MODULE.bazel.example
+++ b/examples/cpp/hello_row/MODULE.bazel.example
@@ -28,7 +28,7 @@
 
 # Fory dependency
 # Option 1: Use git_override to fetch from GitHub (recommended for external projects)
-bazel_dep(name = "fory", version = "1.7.3")
+bazel_dep(name = "fory", version = "1.7.4")
 git_override(
     module_name = "fory",
     remote = "https://github.com/apache/fory.git",
@@ -36,7 +36,7 @@
 )
 
 # Option 2: Use local_path_override for local development
-# bazel_dep(name = "fory", version = "1.7.3")
+# bazel_dep(name = "fory", version = "1.7.4")
 # local_path_override(
 #     module_name = "fory",
 #     path = "/path/to/fory",
diff --git a/examples/cpp/hello_row/README.md b/examples/cpp/hello_row/README.md
index fe922b5..55c0e35 100644
--- a/examples/cpp/hello_row/README.md
+++ b/examples/cpp/hello_row/README.md
@@ -77,7 +77,7 @@
 
 ```bazel
 # In your MODULE.bazel
-bazel_dep(name = "fory", version = "1.7.3")
+bazel_dep(name = "fory", version = "1.7.4")
 git_override(
     module_name = "fory",
     remote = "https://github.com/apache/fory.git",
diff --git a/examples/cpp/hello_world/MODULE.bazel.example b/examples/cpp/hello_world/MODULE.bazel.example
index b3abf67..3a7da82 100644
--- a/examples/cpp/hello_world/MODULE.bazel.example
+++ b/examples/cpp/hello_world/MODULE.bazel.example
@@ -28,7 +28,7 @@
 
 # Fory dependency
 # Option 1: Use git_override to fetch from GitHub (recommended for external projects)
-bazel_dep(name = "fory", version = "1.7.3")
+bazel_dep(name = "fory", version = "1.7.4")
 git_override(
     module_name = "fory",
     remote = "https://github.com/apache/fory.git",
@@ -36,7 +36,7 @@
 )
 
 # Option 2: Use local_path_override for local development
-# bazel_dep(name = "fory", version = "1.7.3")
+# bazel_dep(name = "fory", version = "1.7.4")
 # local_path_override(
 #     module_name = "fory",
 #     path = "/path/to/fory",
diff --git a/examples/cpp/hello_world/README.md b/examples/cpp/hello_world/README.md
index 86fc3dc..c46b8f6 100644
--- a/examples/cpp/hello_world/README.md
+++ b/examples/cpp/hello_world/README.md
@@ -70,7 +70,7 @@
 
 ```bazel
 # In your MODULE.bazel
-bazel_dep(name = "fory", version = "1.7.3")
+bazel_dep(name = "fory", version = "1.7.4")
 git_override(
     module_name = "fory",
     remote = "https://github.com/apache/fory.git",
diff --git a/java/README.md b/java/README.md
index 068c430..ab552bc 100644
--- a/java/README.md
+++ b/java/README.md
@@ -95,28 +95,28 @@
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-core</artifactId>
-  <version>1.7.3</version>
+  <version>1.7.4</version>
 </dependency>
 
 <!-- Row format -->
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-format</artifactId>
-  <version>1.7.3</version>
+  <version>1.7.4</version>
 </dependency>
 
 <!-- JSON serialization -->
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-json</artifactId>
-  <version>1.7.3</version>
+  <version>1.7.4</version>
 </dependency>
 
 <!-- Optional: Serializers for Protobuf data -->
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-extensions</artifactId>
-  <version>1.7.3</version>
+  <version>1.7.4</version>
 </dependency>
 ```
 
@@ -125,13 +125,13 @@
 ```gradle
 dependencies {
     // Binary object serialization
-    implementation 'org.apache.fory:fory-core:1.7.3'
+    implementation 'org.apache.fory:fory-core:1.7.4'
     // Row format
-    implementation 'org.apache.fory:fory-format:1.7.3'
+    implementation 'org.apache.fory:fory-format:1.7.4'
     // JSON serialization
-    implementation 'org.apache.fory:fory-json:1.7.3'
+    implementation 'org.apache.fory:fory-json:1.7.4'
     // Optional: Protobuf serializers and metadata compression
-    implementation 'org.apache.fory:fory-extensions:1.7.3'
+    implementation 'org.apache.fory:fory-extensions:1.7.4'
 }
 ```
 
diff --git a/java/fory-json/README.md b/java/fory-json/README.md
index d8a25b7..2c4434e 100644
--- a/java/fory-json/README.md
+++ b/java/fory-json/README.md
@@ -42,14 +42,14 @@
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-json</artifactId>
-  <version>1.7.3</version>
+  <version>1.7.4</version>
 </dependency>
 ```
 
 Gradle:
 
 ```kotlin
-implementation("org.apache.fory:fory-json:1.7.3")
+implementation("org.apache.fory:fory-json:1.7.4")
 ```
 
 On JDK 25 and later, opening `java.lang.invoke` to Fory core is also recommended. It avoids
diff --git a/rust/README.md b/rust/README.md
index 89c08cc..1e0c678 100644
--- a/rust/README.md
+++ b/rust/README.md
@@ -1,6 +1,6 @@
 # Apache Fory™ Rust
 
-[![Crates.io](https://img.shields.io/badge/crates.io-v1.7.3-blue?logo=rust)](https://crates.io/crates/fory)
+[![Crates.io](https://img.shields.io/badge/crates.io-v1.7.4-blue?logo=rust)](https://crates.io/crates/fory)
 [![Documentation](https://docs.rs/fory/badge.svg)](https://docs.rs/fory)
 [![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/apache/fory/blob/main/LICENSE)
 
@@ -23,9 +23,9 @@
 
 | Crate                                                                       | Description                                               | Version                                       |
 | --------------------------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------- |
-| [`fory`](https://github.com/apache/fory/blob/main/rust/fory)                | User-facing API, runtime types, and derive macros         | [1.7.3](https://crates.io/crates/fory)        |
-| [`fory-core`](https://github.com/apache/fory/blob/main/rust/fory-core/)     | Lower-level runtime crate for advanced integrations       | [1.7.3](https://crates.io/crates/fory-core)   |
-| [`fory-derive`](https://github.com/apache/fory/blob/main/rust/fory-derive/) | Lower-level procedural macro crate for direct runtime use | [1.7.3](https://crates.io/crates/fory-derive) |
+| [`fory`](https://github.com/apache/fory/blob/main/rust/fory)                | User-facing API, runtime types, and derive macros         | [1.7.4](https://crates.io/crates/fory)        |
+| [`fory-core`](https://github.com/apache/fory/blob/main/rust/fory-core/)     | Lower-level runtime crate for advanced integrations       | [1.7.4](https://crates.io/crates/fory-core)   |
+| [`fory-derive`](https://github.com/apache/fory/blob/main/rust/fory-derive/) | Lower-level procedural macro crate for direct runtime use | [1.7.4](https://crates.io/crates/fory-derive) |
 
 Most applications should depend on `fory` only. It re-exports the derive
 macros and the public runtime types needed by generated code. Use `fory-core`
@@ -38,7 +38,7 @@
 
 ```toml
 [dependencies]
-fory = "1.7.3"
+fory = "1.7.4"
 ```
 
 ### Basic Example
diff --git a/scala/fory-json-scala/README.md b/scala/fory-json-scala/README.md
index 5d0f268..d9c5f3d 100644
--- a/scala/fory-json-scala/README.md
+++ b/scala/fory-json-scala/README.md
@@ -7,7 +7,7 @@
 Add the Scala artifact that matches the application Scala version:
 
 ```sbt
-libraryDependencies += "org.apache.fory" %% "fory-json-scala" % "1.7.3"
+libraryDependencies += "org.apache.fory" %% "fory-json-scala" % "1.7.4"
 ```
 
 Create and reuse one Scala-aware Fory JSON instance:
diff --git a/scala/fory-scala/README.md b/scala/fory-scala/README.md
index 2c8e7b3..37d03d7 100644
--- a/scala/fory-scala/README.md
+++ b/scala/fory-scala/README.md
@@ -163,7 +163,7 @@
 Add the dependency with sbt:
 
 ```sbt
-libraryDependencies += "org.apache.fory" %% "fory-scala" % "1.7.3"
+libraryDependencies += "org.apache.fory" %% "fory-scala" % "1.7.4"
 ```
 
 ## Additional Notes
diff --git a/swift/README.md b/swift/README.md
index 3cb1743..5431f4d 100644
--- a/swift/README.md
+++ b/swift/README.md
@@ -34,7 +34,7 @@
 
 ```swift
 dependencies: [
-    .package(url: "https://github.com/apache/fory.git", from: "1.7.3")
+    .package(url: "https://github.com/apache/fory.git", from: "1.7.4")
 ],
 targets: [
     .target(