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


The following commit(s) were added to refs/heads/main by this push:
     new e8e1019c9a bump version to 0.15 (#406)
e8e1019c9a is described below

commit e8e1019c9a9098baec998e9236a57124f8a4c644
Author: Shawn Yang <[email protected]>
AuthorDate: Tue Feb 10 11:49:06 2026 +0800

    bump version to 0.15 (#406)
---
 docs/start/install.md                                    | 16 ++++++++--------
 .../current/guide/cpp/index.md                           |  8 ++++----
 .../current/guide/java/compression.md                    |  2 +-
 .../current/guide/kotlin/index.md                        |  4 ++--
 .../current/guide/xlang/getting-started.md               |  4 ++--
 .../current/start/install.md                             | 16 ++++++++--------
 .../version-0.15/guide/cpp/index.md                      |  8 ++++----
 .../version-0.15/guide/java/compression.md               |  2 +-
 .../version-0.15/guide/kotlin/index.md                   |  4 ++--
 .../version-0.15/guide/xlang/getting-started.md          |  4 ++--
 .../version-0.15/start/install.md                        | 16 ++++++++--------
 src/pages/download/index.md                              | 10 +++++-----
 versioned_docs/version-0.15/start/install.md             | 16 ++++++++--------
 13 files changed, 55 insertions(+), 55 deletions(-)

diff --git a/docs/start/install.md b/docs/start/install.md
index d2bc8def4b..951a42fbdc 100644
--- a/docs/start/install.md
+++ b/docs/start/install.md
@@ -16,7 +16,7 @@ To add a dependency on Apache Fory™ using Maven, use the 
following:
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-core</artifactId>
-  <version>0.14.1</version>
+  <version>0.15.0</version>
 </dependency>
 <!-- Optional row format support -->
 <!--
@@ -44,7 +44,7 @@ To add a dependency on Apache Fory™ scala for scala 2.13 with 
maven, use the f
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-scala_2.13</artifactId>
-  <version>0.14.1</version>
+  <version>0.15.0</version>
 </dependency>
 ```
 
@@ -54,20 +54,20 @@ To add a dependency on Apache Fory™ scala for scala 3 with 
maven, use the foll
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-scala_3</artifactId>
-  <version>0.14.1</version>
+  <version>0.15.0</version>
 </dependency>
 ```
 
 To add a dependency on Apache Fory™ scala for scala 2.13 with sbt, use the 
following:
 
 ```sbt
-libraryDependencies += "org.apache.fory" % "fory-scala_2.13" % "0.14.1"
+libraryDependencies += "org.apache.fory" % "fory-scala_2.13" % "0.15.0"
 ```
 
 To add a dependency on Apache Fory™ scala for scala 3 with sbt, use the 
following:
 
 ```sbt
-libraryDependencies += "org.apache.fory" % "fory-scala_3" % "0.14.1"
+libraryDependencies += "org.apache.fory" % "fory-scala_3" % "0.15.0"
 ```
 
 ## Kotlin
@@ -78,7 +78,7 @@ To add a dependency on Apache Fory™ kotlin with maven, use 
the following:
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-kotlin</artifactId>
-  <version>0.14.1</version>
+  <version>0.15.0</version>
 </dependency>
 ```
 
@@ -86,7 +86,7 @@ To add a dependency on Apache Fory™ kotlin with maven, use 
the following:
 
 ```bash
 python -m pip install --upgrade pip
-pip install pyfory==0.14.1
+pip install pyfory==0.15.0
 ```
 
 ## Rust
@@ -99,7 +99,7 @@ fory = "0.14"
 or just execute command:
 
 ```bash
-cargo add [email protected]
+cargo add [email protected]
 ```
 
 ## JavaScript
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/guide/cpp/index.md 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/guide/cpp/index.md
index fd2cc732a7..f9617254f9 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/guide/cpp/index.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/guide/cpp/index.md
@@ -59,7 +59,7 @@ include(FetchContent)
 FetchContent_Declare(
     fory
     GIT_REPOSITORY https://github.com/apache/fory.git
-    GIT_TAG        v0.14.1
+    GIT_TAG        v0.15.0
     SOURCE_SUBDIR  cpp
 )
 FetchContent_MakeAvailable(fory)
@@ -89,11 +89,11 @@ module(
 
 bazel_dep(name = "rules_cc", version = "0.1.1")
 
-bazel_dep(name = "fory", version = "0.14.1")
+bazel_dep(name = "fory", version = "0.15.0")
 git_override(
     module_name = "fory",
     remote = "https://github.com/apache/fory.git";,
-    commit = "v0.14.1",  # Or use a specific commit hash for reproducibility
+    commit = "v0.15.0",  # Or use a specific commit hash for reproducibility
 )
 ```
 
@@ -117,7 +117,7 @@ bazel run //:my_app
 For local development, you can use `local_path_override` instead:
 
 ```bazel
-bazel_dep(name = "fory", version = "0.14.1")
+bazel_dep(name = "fory", version = "0.15.0")
 local_path_override(
     module_name = "fory",
     path = "/path/to/fory",
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/guide/java/compression.md 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/guide/java/compression.md
index f79676a5bf..4da477b9e2 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/guide/java/compression.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/guide/java/compression.md
@@ -84,7 +84,7 @@ CompressedArraySerializers.registerSerializers(fory);
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-simd</artifactId>
-  <version>0.14.1</version>
+  <version>0.15.0</version>
 </dependency>
 ```
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/guide/kotlin/index.md 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/guide/kotlin/index.md
index 33412b125d..8c40b36ceb 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/guide/kotlin/index.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/guide/kotlin/index.md
@@ -50,14 +50,14 @@ See [Java Features](../java/index.md#features) for complete 
feature list.
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-kotlin</artifactId>
-  <version>0.14.1</version>
+  <version>0.15.0</version>
 </dependency>
 ```
 
 ### Gradle
 
 ```kotlin
-implementation("org.apache.fory:fory-kotlin:0.14.1")
+implementation("org.apache.fory:fory-kotlin:0.15.0")
 ```
 
 ## Quick Start
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/guide/xlang/getting-started.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/guide/xlang/getting-started.md
index f2eb5e41ff..2779984baf 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/guide/xlang/getting-started.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/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.14.1</version>
+  <version>0.15.0</version>
 </dependency>
 ```
 
 **Gradle:**
 
 ```gradle
-implementation 'org.apache.fory:fory-core:0.14.1'
+implementation 'org.apache.fory:fory-core:0.15.0'
 ```
 
 ### Python
diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/start/install.md 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/start/install.md
index 9b6077dc6e..d3bc9744c6 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/start/install.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/start/install.md
@@ -14,7 +14,7 @@ Apache Fory™ 源码下载请参见 Apache Fory™ [download](https://github.co
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-core</artifactId>
-  <version>0.14.1</version>
+  <version>0.15.0</version>
 </dependency>
 <!-- Optional row format support -->
 <!--
@@ -42,7 +42,7 @@ Apache Fory™ 源码下载请参见 Apache Fory™ [download](https://github.co
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-scala_2.13</artifactId>
-  <version>0.14.1</version>
+  <version>0.15.0</version>
 </dependency>
 ```
 
@@ -52,20 +52,20 @@ Apache Fory™ 源码下载请参见 Apache Fory™ 
[download](https://github.co
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-scala_3</artifactId>
-  <version>0.14.1</version>
+  <version>0.15.0</version>
 </dependency>
 ```
 
 要使用 sbt 添加 scala 2.13 的 Fory scala 依赖,请使用以下配置:
 
 ```sbt
-libraryDependencies += "org.apache.fory" % "fory-scala_2.13" % "0.14.1"
+libraryDependencies += "org.apache.fory" % "fory-scala_2.13" % "0.15.0"
 ```
 
 要使用 sbt 添加 scala 3 的 Fory scala 依赖,请使用以下配置:
 
 ```sbt
-libraryDependencies += "org.apache.fory" % "fory-scala_3" % "0.14.1"
+libraryDependencies += "org.apache.fory" % "fory-scala_3" % "0.15.0"
 ```
 
 ## 安装 Apache Fory™ Kotlin
@@ -76,7 +76,7 @@ To add a dependency on Apache Fory™kotlin with maven, use the 
following:
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-kotlin</artifactId>
-  <version>0.14.1</version>
+  <version>0.15.0</version>
 </dependency>
 ```
 
@@ -84,7 +84,7 @@ To add a dependency on Apache Fory™kotlin with maven, use the 
following:
 
 ```bash
 python -m pip install --upgrade pip
-pip install pyfory==0.14.1
+pip install pyfory==0.15.0
 ```
 
 ## 安装 Apache Fory™ Rust
@@ -97,5 +97,5 @@ fory = "0.14"
 或者直接执行以下命令:
 
 ```bash
-cargo add [email protected]
+cargo add [email protected]
 ```
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.15/guide/cpp/index.md 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.15/guide/cpp/index.md
index fd2cc732a7..f9617254f9 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.15/guide/cpp/index.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.15/guide/cpp/index.md
@@ -59,7 +59,7 @@ include(FetchContent)
 FetchContent_Declare(
     fory
     GIT_REPOSITORY https://github.com/apache/fory.git
-    GIT_TAG        v0.14.1
+    GIT_TAG        v0.15.0
     SOURCE_SUBDIR  cpp
 )
 FetchContent_MakeAvailable(fory)
@@ -89,11 +89,11 @@ module(
 
 bazel_dep(name = "rules_cc", version = "0.1.1")
 
-bazel_dep(name = "fory", version = "0.14.1")
+bazel_dep(name = "fory", version = "0.15.0")
 git_override(
     module_name = "fory",
     remote = "https://github.com/apache/fory.git";,
-    commit = "v0.14.1",  # Or use a specific commit hash for reproducibility
+    commit = "v0.15.0",  # Or use a specific commit hash for reproducibility
 )
 ```
 
@@ -117,7 +117,7 @@ bazel run //:my_app
 For local development, you can use `local_path_override` instead:
 
 ```bazel
-bazel_dep(name = "fory", version = "0.14.1")
+bazel_dep(name = "fory", version = "0.15.0")
 local_path_override(
     module_name = "fory",
     path = "/path/to/fory",
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.15/guide/java/compression.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.15/guide/java/compression.md
index f79676a5bf..4da477b9e2 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.15/guide/java/compression.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.15/guide/java/compression.md
@@ -84,7 +84,7 @@ CompressedArraySerializers.registerSerializers(fory);
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-simd</artifactId>
-  <version>0.14.1</version>
+  <version>0.15.0</version>
 </dependency>
 ```
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.15/guide/kotlin/index.md 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.15/guide/kotlin/index.md
index 33412b125d..8c40b36ceb 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.15/guide/kotlin/index.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.15/guide/kotlin/index.md
@@ -50,14 +50,14 @@ See [Java Features](../java/index.md#features) for complete 
feature list.
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-kotlin</artifactId>
-  <version>0.14.1</version>
+  <version>0.15.0</version>
 </dependency>
 ```
 
 ### Gradle
 
 ```kotlin
-implementation("org.apache.fory:fory-kotlin:0.14.1")
+implementation("org.apache.fory:fory-kotlin:0.15.0")
 ```
 
 ## Quick Start
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.15/guide/xlang/getting-started.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.15/guide/xlang/getting-started.md
index f2eb5e41ff..2779984baf 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.15/guide/xlang/getting-started.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.15/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.14.1</version>
+  <version>0.15.0</version>
 </dependency>
 ```
 
 **Gradle:**
 
 ```gradle
-implementation 'org.apache.fory:fory-core:0.14.1'
+implementation 'org.apache.fory:fory-core:0.15.0'
 ```
 
 ### Python
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.15/start/install.md 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.15/start/install.md
index 9b6077dc6e..d3bc9744c6 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.15/start/install.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.15/start/install.md
@@ -14,7 +14,7 @@ Apache Fory™ 源码下载请参见 Apache Fory™ [download](https://github.co
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-core</artifactId>
-  <version>0.14.1</version>
+  <version>0.15.0</version>
 </dependency>
 <!-- Optional row format support -->
 <!--
@@ -42,7 +42,7 @@ Apache Fory™ 源码下载请参见 Apache Fory™ [download](https://github.co
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-scala_2.13</artifactId>
-  <version>0.14.1</version>
+  <version>0.15.0</version>
 </dependency>
 ```
 
@@ -52,20 +52,20 @@ Apache Fory™ 源码下载请参见 Apache Fory™ 
[download](https://github.co
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-scala_3</artifactId>
-  <version>0.14.1</version>
+  <version>0.15.0</version>
 </dependency>
 ```
 
 要使用 sbt 添加 scala 2.13 的 Fory scala 依赖,请使用以下配置:
 
 ```sbt
-libraryDependencies += "org.apache.fory" % "fory-scala_2.13" % "0.14.1"
+libraryDependencies += "org.apache.fory" % "fory-scala_2.13" % "0.15.0"
 ```
 
 要使用 sbt 添加 scala 3 的 Fory scala 依赖,请使用以下配置:
 
 ```sbt
-libraryDependencies += "org.apache.fory" % "fory-scala_3" % "0.14.1"
+libraryDependencies += "org.apache.fory" % "fory-scala_3" % "0.15.0"
 ```
 
 ## 安装 Apache Fory™ Kotlin
@@ -76,7 +76,7 @@ To add a dependency on Apache Fory™kotlin with maven, use the 
following:
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-kotlin</artifactId>
-  <version>0.14.1</version>
+  <version>0.15.0</version>
 </dependency>
 ```
 
@@ -84,7 +84,7 @@ To add a dependency on Apache Fory™kotlin with maven, use the 
following:
 
 ```bash
 python -m pip install --upgrade pip
-pip install pyfory==0.14.1
+pip install pyfory==0.15.0
 ```
 
 ## 安装 Apache Fory™ Rust
@@ -97,5 +97,5 @@ fory = "0.14"
 或者直接执行以下命令:
 
 ```bash
-cargo add [email protected]
+cargo add [email protected]
 ```
diff --git a/src/pages/download/index.md b/src/pages/download/index.md
index 6075076518..02911401c8 100644
--- a/src/pages/download/index.md
+++ b/src/pages/download/index.md
@@ -9,11 +9,11 @@ For binary install, please see Apache Fory™ 
[install](/docs/start/install/) do
 
 ## The latest release
 
-The latest source release is 0.14.1:
+The latest source release is 0.15.0:
 
 | Version | Date       | Source                                                
                                                                                
                                                                                
                                                                 | Release 
Notes                                                        |
 | ------- | ---------- | 
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
 | -------------------------------------------------------------------- |
-| 0.14.1  | 2025-12-05 | 
[source](https://www.apache.org/dyn/closer.lua/fory/0.14.1/apache-fory-0.14.1-src.tar.gz?action=download)
 
[asc](https://downloads.apache.org/fory/0.14.1/apache-fory-0.14.1-src.tar.gz.asc)
 
[sha512](https://downloads.apache.org/fory/0.14.1/apache-fory-0.14.1-src.tar.gz.sha512)
 | [release notes](https://github.com/apache/fory/releases/tag/v0.14.1) |
+| 0.15.0  | 2025-12-05 | 
[source](https://www.apache.org/dyn/closer.lua/fory/0.15.0/apache-fory-0.15.0-src.tar.gz?action=download)
 
[asc](https://downloads.apache.org/fory/0.15.0/apache-fory-0.15.0-src.tar.gz.asc)
 
[sha512](https://downloads.apache.org/fory/0.15.0/apache-fory-0.15.0-src.tar.gz.sha512)
 | [release notes](https://github.com/apache/fory/releases/tag/v0.15.0) |
 
 ## All archived releases
 
@@ -31,13 +31,13 @@ These files are named after the files they relate to but 
have `.sha512/.asc` ext
 To verify the SHA digests, you need the `.tgz` and its associated 
`.tgz.sha512` file. An example command:
 
 ```bash
-sha512sum --check apache-fory-0.14.1-src.tar.gz
+sha512sum --check apache-fory-0.15.0-src.tar.gz
 ```
 
 It should output something like:
 
 ```bash
-apache-fory-0.14.1-src.tar.gz: OK
+apache-fory-0.15.0-src.tar.gz: OK
 ```
 
 ### Verifying Signatures
@@ -54,7 +54,7 @@ gpg --import KEYS
 Then you can verify signature:
 
 ```bash
-gpg --verify apache-fory-0.14.1-src.tar.gz.asc apache-fory-0.14.1-src.tar.gz
+gpg --verify apache-fory-0.15.0-src.tar.gz.asc apache-fory-0.15.0-src.tar.gz
 ```
 
 If something like the following appears, it means the signature is correct:
diff --git a/versioned_docs/version-0.15/start/install.md 
b/versioned_docs/version-0.15/start/install.md
index d2bc8def4b..951a42fbdc 100644
--- a/versioned_docs/version-0.15/start/install.md
+++ b/versioned_docs/version-0.15/start/install.md
@@ -16,7 +16,7 @@ To add a dependency on Apache Fory™ using Maven, use the 
following:
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-core</artifactId>
-  <version>0.14.1</version>
+  <version>0.15.0</version>
 </dependency>
 <!-- Optional row format support -->
 <!--
@@ -44,7 +44,7 @@ To add a dependency on Apache Fory™ scala for scala 2.13 with 
maven, use the f
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-scala_2.13</artifactId>
-  <version>0.14.1</version>
+  <version>0.15.0</version>
 </dependency>
 ```
 
@@ -54,20 +54,20 @@ To add a dependency on Apache Fory™ scala for scala 3 with 
maven, use the foll
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-scala_3</artifactId>
-  <version>0.14.1</version>
+  <version>0.15.0</version>
 </dependency>
 ```
 
 To add a dependency on Apache Fory™ scala for scala 2.13 with sbt, use the 
following:
 
 ```sbt
-libraryDependencies += "org.apache.fory" % "fory-scala_2.13" % "0.14.1"
+libraryDependencies += "org.apache.fory" % "fory-scala_2.13" % "0.15.0"
 ```
 
 To add a dependency on Apache Fory™ scala for scala 3 with sbt, use the 
following:
 
 ```sbt
-libraryDependencies += "org.apache.fory" % "fory-scala_3" % "0.14.1"
+libraryDependencies += "org.apache.fory" % "fory-scala_3" % "0.15.0"
 ```
 
 ## Kotlin
@@ -78,7 +78,7 @@ To add a dependency on Apache Fory™ kotlin with maven, use 
the following:
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-kotlin</artifactId>
-  <version>0.14.1</version>
+  <version>0.15.0</version>
 </dependency>
 ```
 
@@ -86,7 +86,7 @@ To add a dependency on Apache Fory™ kotlin with maven, use 
the following:
 
 ```bash
 python -m pip install --upgrade pip
-pip install pyfory==0.14.1
+pip install pyfory==0.15.0
 ```
 
 ## Rust
@@ -99,7 +99,7 @@ fory = "0.14"
 or just execute command:
 
 ```bash
-cargo add [email protected]
+cargo add [email protected]
 ```
 
 ## JavaScript


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

Reply via email to