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.git


The following commit(s) were added to refs/heads/main by this push:
     new 5da3d41d8 chore: Bump release version to 0.15.0 (#3317)
5da3d41d8 is described below

commit 5da3d41d8f1965d5a78c3e78b2cfddda86fe410d
Author: Shawn Yang <[email protected]>
AuthorDate: Mon Feb 9 23:23:05 2026 +0800

    chore: Bump release version to 0.15.0 (#3317)
    
    ## Why?
    
    
    
    ## What does this PR do?
    
    
    
    ## Related issues
    
    
    
    ## Does this PR introduce any user-facing change?
    
    
    
    - [ ] Does this PR introduce any public API change?
    - [ ] Does this PR introduce any binary protocol compatibility change?
    
    ## Benchmark
---
 README.md                                         |  8 ++++----
 benchmarks/cpp_benchmark/CMakeLists.txt           |  2 +-
 benchmarks/go_benchmark/go.mod                    |  2 +-
 benchmarks/java_benchmark/pom.xml                 |  2 +-
 benchmarks/rust_benchmark/Cargo.toml              |  2 +-
 compiler/fory_compiler/__init__.py                |  2 +-
 compiler/pyproject.toml                           |  2 +-
 cpp/CMakeLists.txt                                |  2 +-
 dart/packages/fory-test/pubspec.yaml              |  4 ++--
 dart/packages/fory/pubspec.yaml                   |  2 +-
 dart/pubspec.yaml                                 |  4 ++--
 docs/guide/cpp/index.md                           |  8 ++++----
 docs/guide/java/compression.md                    |  2 +-
 docs/guide/kotlin/index.md                        |  4 ++--
 docs/guide/scala/index.md                         |  2 +-
 docs/guide/xlang/getting-started.md               |  4 ++--
 examples/cpp/hello_row/README.md                  |  2 +-
 examples/cpp/hello_world/README.md                |  2 +-
 integration_tests/graalvm_tests/pom.xml           |  2 +-
 integration_tests/idl_tests/cpp/CMakeLists.txt    |  2 +-
 integration_tests/idl_tests/go/go.mod             |  2 +-
 integration_tests/idl_tests/java/pom.xml          |  2 +-
 integration_tests/idl_tests/python/pyproject.toml |  2 +-
 integration_tests/idl_tests/rust/Cargo.toml       |  2 +-
 integration_tests/jdk_compatibility_tests/pom.xml |  2 +-
 integration_tests/jpms_tests/pom.xml              |  2 +-
 java/README.md                                    | 16 ++++++++--------
 java/fory-core/pom.xml                            |  2 +-
 java/fory-extensions/pom.xml                      |  2 +-
 java/fory-format/pom.xml                          |  2 +-
 java/fory-graalvm-feature/pom.xml                 |  2 +-
 java/fory-latest-jdk-tests/pom.xml                |  2 +-
 java/fory-simd/pom.xml                            |  2 +-
 java/fory-test-core/pom.xml                       |  2 +-
 java/fory-testsuite/pom.xml                       |  2 +-
 java/pom.xml                                      |  2 +-
 javascript/packages/fory/package.json             |  2 +-
 javascript/packages/hps/package.json              |  2 +-
 kotlin/README.md                                  |  4 ++--
 kotlin/pom.xml                                    |  2 +-
 python/pyfory/__init__.py                         |  2 +-
 rust/Cargo.toml                                   |  6 +++---
 scala/README.md                                   |  2 +-
 scala/build.sbt                                   |  2 +-
 44 files changed, 64 insertions(+), 64 deletions(-)

diff --git a/README.md b/README.md
index 806cdf0e0..f94ab3d22 100644
--- a/README.md
+++ b/README.md
@@ -132,7 +132,7 @@ For more detailed benchmarks and methodology, see [Go 
Benchmark](benchmarks/go_b
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-core</artifactId>
-  <version>0.14.1</version>
+  <version>0.15.0</version>
 </dependency>
 ```
 
@@ -142,10 +142,10 @@ Snapshots are available from 
`https://repository.apache.org/snapshots/` (version
 
 ```sbt
 // Scala 2.13
-libraryDependencies += "org.apache.fory" % "fory-scala_2.13" % "0.14.1"
+libraryDependencies += "org.apache.fory" % "fory-scala_2.13" % "0.15.0"
 
 // Scala 3
-libraryDependencies += "org.apache.fory" % "fory-scala_3" % "0.14.1"
+libraryDependencies += "org.apache.fory" % "fory-scala_3" % "0.15.0"
 ```
 
 **Kotlin**:
@@ -154,7 +154,7 @@ libraryDependencies += "org.apache.fory" % "fory-scala_3" % 
"0.14.1"
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-kotlin</artifactId>
-  <version>0.14.1</version>
+  <version>0.15.0</version>
 </dependency>
 ```
 
diff --git a/benchmarks/cpp_benchmark/CMakeLists.txt 
b/benchmarks/cpp_benchmark/CMakeLists.txt
index 0e53d2ee8..8d8b4f95f 100644
--- a/benchmarks/cpp_benchmark/CMakeLists.txt
+++ b/benchmarks/cpp_benchmark/CMakeLists.txt
@@ -18,7 +18,7 @@
 cmake_minimum_required(VERSION 3.16)
 
 project(fory_cpp_benchmark
-    VERSION 0.15.0
+    VERSION 0.16.0
     DESCRIPTION "C++ Benchmark comparing Fory and Protobuf serialization"
     LANGUAGES CXX
 )
diff --git a/benchmarks/go_benchmark/go.mod b/benchmarks/go_benchmark/go.mod
index 6094fd861..89ee63067 100644
--- a/benchmarks/go_benchmark/go.mod
+++ b/benchmarks/go_benchmark/go.mod
@@ -20,7 +20,7 @@ module github.com/apache/fory/benchmarks/go_benchmark
 go 1.24.0
 
 require (
-       github.com/apache/fory/go/fory v0.15.0-alpha.0
+       github.com/apache/fory/go/fory v0.16.0-alpha.0
        github.com/vmihailenco/msgpack/v5 v5.4.1
        google.golang.org/protobuf v1.36.0
 )
diff --git a/benchmarks/java_benchmark/pom.xml 
b/benchmarks/java_benchmark/pom.xml
index de5a26565..e36df950b 100644
--- a/benchmarks/java_benchmark/pom.xml
+++ b/benchmarks/java_benchmark/pom.xml
@@ -26,7 +26,7 @@
   <parent>
     <artifactId>fory-parent</artifactId>
     <groupId>org.apache.fory</groupId>
-    <version>0.15.0-SNAPSHOT</version>
+    <version>0.16.0-SNAPSHOT</version>
   </parent>
 
   <artifactId>benchmark</artifactId>
diff --git a/benchmarks/rust_benchmark/Cargo.toml 
b/benchmarks/rust_benchmark/Cargo.toml
index 8dce9dc7e..cccfb7149 100644
--- a/benchmarks/rust_benchmark/Cargo.toml
+++ b/benchmarks/rust_benchmark/Cargo.toml
@@ -17,7 +17,7 @@
 
 [package]
 name = "fory-benchmarks"
-version = "0.15.0-alpha.0"
+version = "0.16.0-alpha.0"
 edition = "2021"
 
 [[bin]]
diff --git a/compiler/fory_compiler/__init__.py 
b/compiler/fory_compiler/__init__.py
index 15c3cfadd..e9b70b8ac 100644
--- a/compiler/fory_compiler/__init__.py
+++ b/compiler/fory_compiler/__init__.py
@@ -17,7 +17,7 @@
 
 """Fory IDL compiler for Apache Fory."""
 
-__version__ = "0.15.0.dev0"
+__version__ = "0.16.0.dev0"
 
 from fory_compiler.ir.ast import Schema, Message, Enum, Field, EnumValue, 
Import
 from fory_compiler.frontend.fdl import FDLFrontend
diff --git a/compiler/pyproject.toml b/compiler/pyproject.toml
index 4bbf97986..09e25584e 100644
--- a/compiler/pyproject.toml
+++ b/compiler/pyproject.toml
@@ -21,7 +21,7 @@ build-backend = "setuptools.build_meta"
 
 [project]
 name = "fory-compiler"
-version = "0.15.0.dev0"
+version = "0.16.0.dev0"
 description = "FDL (Fory Definition Language) compiler for Apache Fory 
cross-language serialization"
 readme = "README.md"
 license = {text = "Apache-2.0"}
diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt
index 60efb9e13..9633aa050 100644
--- a/cpp/CMakeLists.txt
+++ b/cpp/CMakeLists.txt
@@ -18,7 +18,7 @@
 cmake_minimum_required(VERSION 3.16)
 
 project(fory
-    VERSION 0.15.0
+    VERSION 0.16.0
     DESCRIPTION "Apache Fory - A blazingly fast multi-language serialization 
framework"
     LANGUAGES CXX
 )
diff --git a/dart/packages/fory-test/pubspec.yaml 
b/dart/packages/fory-test/pubspec.yaml
index f2b121648..7314ed308 100644
--- a/dart/packages/fory-test/pubspec.yaml
+++ b/dart/packages/fory-test/pubspec.yaml
@@ -17,7 +17,7 @@
 
 name: fory_test
 description: test for fory dart
-version: 0.15.0-dev
+version: 0.16.0-dev
 
 environment:
   sdk: ^3.6.1
@@ -25,7 +25,7 @@ environment:
 resolution: workspace
 
 dependencies:
-  fory: 0.15.0-dev
+  fory: 0.16.0-dev
   checks: ^0.3.0
   path: ^1.9.1
   yaml: ^3.1.3
diff --git a/dart/packages/fory/pubspec.yaml b/dart/packages/fory/pubspec.yaml
index 33e40e5b0..79b22a524 100644
--- a/dart/packages/fory/pubspec.yaml
+++ b/dart/packages/fory/pubspec.yaml
@@ -17,7 +17,7 @@
 
 name: fory
 description: apache fory dart support
-version: 0.15.0-dev
+version: 0.16.0-dev
 
 resolution: workspace
 
diff --git a/dart/pubspec.yaml b/dart/pubspec.yaml
index c9b60639d..b4739debf 100644
--- a/dart/pubspec.yaml
+++ b/dart/pubspec.yaml
@@ -17,7 +17,7 @@
 
 name: fory_dart
 description: apache fory dart support
-version: 0.15.0-dev
+version: 0.16.0-dev
 # repository: https://github.com/my_org/my_repo
 
 environment:
@@ -25,7 +25,7 @@ environment:
 
 # Add regular dependencies here.
 dependencies:
-  fory: 0.15.0-dev
+  fory: 0.16.0-dev
   build_runner: ^2.4.13
 dev_dependencies:
   lints: ^5.0.0
diff --git a/docs/guide/cpp/index.md b/docs/guide/cpp/index.md
index e0bc24a34..2b363261f 100644
--- a/docs/guide/cpp/index.md
+++ b/docs/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/docs/guide/java/compression.md b/docs/guide/java/compression.md
index 11cabe634..23ca435f3 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.14.1</version>
+  <version>0.15.0</version>
 </dependency>
 ```
 
diff --git a/docs/guide/kotlin/index.md b/docs/guide/kotlin/index.md
index 33412b125..8c40b36ce 100644
--- a/docs/guide/kotlin/index.md
+++ b/docs/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/docs/guide/scala/index.md b/docs/guide/scala/index.md
index 6ed4c0369..fe86993e1 100644
--- a/docs/guide/scala/index.md
+++ b/docs/guide/scala/index.md
@@ -48,7 +48,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.14.1"
+libraryDependencies += "org.apache.fory" %% "fory-scala" % "0.15.0"
 ```
 
 ## Quick Start
diff --git a/docs/guide/xlang/getting-started.md 
b/docs/guide/xlang/getting-started.md
index 083eb7578..53537d322 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.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/examples/cpp/hello_row/README.md b/examples/cpp/hello_row/README.md
index 6a4f48803..45122177e 100644
--- a/examples/cpp/hello_row/README.md
+++ b/examples/cpp/hello_row/README.md
@@ -77,7 +77,7 @@ For your own project using Fory as a dependency:
 
 ```bazel
 # In your MODULE.bazel
-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";,
diff --git a/examples/cpp/hello_world/README.md 
b/examples/cpp/hello_world/README.md
index ce0bf7052..a14b9e8c1 100644
--- a/examples/cpp/hello_world/README.md
+++ b/examples/cpp/hello_world/README.md
@@ -70,7 +70,7 @@ For your own project using Fory as a dependency:
 
 ```bazel
 # In your MODULE.bazel
-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";,
diff --git a/integration_tests/graalvm_tests/pom.xml 
b/integration_tests/graalvm_tests/pom.xml
index 95589552e..857532d73 100644
--- a/integration_tests/graalvm_tests/pom.xml
+++ b/integration_tests/graalvm_tests/pom.xml
@@ -25,7 +25,7 @@
   <parent>
     <groupId>org.apache.fory</groupId>
     <artifactId>fory-parent</artifactId>
-    <version>0.15.0-SNAPSHOT</version>
+    <version>0.16.0-SNAPSHOT</version>
     <relativePath>../../java</relativePath>
   </parent>
   <modelVersion>4.0.0</modelVersion>
diff --git a/integration_tests/idl_tests/cpp/CMakeLists.txt 
b/integration_tests/idl_tests/cpp/CMakeLists.txt
index 49ee11121..95ccc3374 100644
--- a/integration_tests/idl_tests/cpp/CMakeLists.txt
+++ b/integration_tests/idl_tests/cpp/CMakeLists.txt
@@ -18,7 +18,7 @@
 cmake_minimum_required(VERSION 3.16)
 
 project(fory_idl_tests
-    VERSION 0.15.0
+    VERSION 0.16.0
     DESCRIPTION "Fory IDL compiler integration tests"
     LANGUAGES CXX
 )
diff --git a/integration_tests/idl_tests/go/go.mod 
b/integration_tests/idl_tests/go/go.mod
index 3485997f7..89abb19e7 100644
--- a/integration_tests/idl_tests/go/go.mod
+++ b/integration_tests/idl_tests/go/go.mod
@@ -19,7 +19,7 @@ module github.com/apache/fory/integration_tests/idl_tests/go
 
 go 1.24.0
 
-require github.com/apache/fory/go/fory v0.15.0-alpha.0
+require github.com/apache/fory/go/fory v0.16.0-alpha.0
 
 require github.com/spaolacci/murmur3 v1.1.0 // indirect
 
diff --git a/integration_tests/idl_tests/java/pom.xml 
b/integration_tests/idl_tests/java/pom.xml
index 36097e39c..bbb79f5d8 100644
--- a/integration_tests/idl_tests/java/pom.xml
+++ b/integration_tests/idl_tests/java/pom.xml
@@ -25,7 +25,7 @@
   <parent>
     <groupId>org.apache.fory</groupId>
     <artifactId>fory-parent</artifactId>
-    <version>0.15.0-SNAPSHOT</version>
+    <version>0.16.0-SNAPSHOT</version>
     <relativePath>../../java</relativePath>
   </parent>
   <modelVersion>4.0.0</modelVersion>
diff --git a/integration_tests/idl_tests/python/pyproject.toml 
b/integration_tests/idl_tests/python/pyproject.toml
index 9e0160772..3ac833a1c 100644
--- a/integration_tests/idl_tests/python/pyproject.toml
+++ b/integration_tests/idl_tests/python/pyproject.toml
@@ -21,7 +21,7 @@ build-backend = "setuptools.build_meta"
 
 [project]
 name = "fory-idl-tests"
-version = "0.15.0.dev0"
+version = "0.16.0.dev0"
 description = "IDL compiler integration tests for Apache Fory"
 readme = "README.md"
 requires-python = ">=3.8"
diff --git a/integration_tests/idl_tests/rust/Cargo.toml 
b/integration_tests/idl_tests/rust/Cargo.toml
index 70144ae59..67a2a37ca 100644
--- a/integration_tests/idl_tests/rust/Cargo.toml
+++ b/integration_tests/idl_tests/rust/Cargo.toml
@@ -17,7 +17,7 @@
 
 [package]
 name = "idl_tests"
-version = "0.15.0-alpha.0"
+version = "0.16.0-alpha.0"
 edition = "2021"
 license = "Apache-2.0"
 
diff --git a/integration_tests/jdk_compatibility_tests/pom.xml 
b/integration_tests/jdk_compatibility_tests/pom.xml
index a34eba492..402b620f9 100644
--- a/integration_tests/jdk_compatibility_tests/pom.xml
+++ b/integration_tests/jdk_compatibility_tests/pom.xml
@@ -25,7 +25,7 @@
   <parent>
     <groupId>org.apache.fory</groupId>
     <artifactId>fory-parent</artifactId>
-    <version>0.15.0-SNAPSHOT</version>
+    <version>0.16.0-SNAPSHOT</version>
     <relativePath>../../java</relativePath>
   </parent>
   <modelVersion>4.0.0</modelVersion>
diff --git a/integration_tests/jpms_tests/pom.xml 
b/integration_tests/jpms_tests/pom.xml
index d768fba76..2bdf88b89 100644
--- a/integration_tests/jpms_tests/pom.xml
+++ b/integration_tests/jpms_tests/pom.xml
@@ -25,7 +25,7 @@
   <parent>
     <groupId>org.apache.fory</groupId>
     <artifactId>fory-parent</artifactId>
-    <version>0.15.0-SNAPSHOT</version>
+    <version>0.16.0-SNAPSHOT</version>
     <relativePath>../../java</relativePath>
   </parent>
   <modelVersion>4.0.0</modelVersion>
diff --git a/java/README.md b/java/README.md
index 8c162d6c8..517f21587 100644
--- a/java/README.md
+++ b/java/README.md
@@ -61,28 +61,28 @@ Apache Fory™ Java provides blazingly-fast serialization for 
the Java ecosystem
 <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 -->
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-format</artifactId>
-  <version>0.14.1</version>
+  <version>0.15.0</version>
 </dependency>
 
 <!-- Optional: Serializers for Protobuf data -->
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-extensions</artifactId>
-  <version>0.14.1</version>
+  <version>0.15.0</version>
 </dependency>
 
 <!-- Optional: SIMD acceleration (Java 16+) -->
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-simd</artifactId>
-  <version>0.14.1</version>
+  <version>0.15.0</version>
 </dependency>
 ```
 
@@ -90,11 +90,11 @@ Apache Fory™ Java provides blazingly-fast serialization for 
the Java ecosystem
 
 ```gradle
 dependencies {
-    implementation 'org.apache.fory:fory-core:0.14.1'
+    implementation 'org.apache.fory:fory-core:0.15.0'
     // Optional modules
-    implementation 'org.apache.fory:fory-format:0.14.1'
-    implementation 'org.apache.fory:fory-simd:0.14.1'
-    implementation 'org.apache.fory:fory-extensions:0.14.1'
+    implementation 'org.apache.fory:fory-format:0.15.0'
+    implementation 'org.apache.fory:fory-simd:0.15.0'
+    implementation 'org.apache.fory:fory-extensions:0.15.0'
 }
 ```
 
diff --git a/java/fory-core/pom.xml b/java/fory-core/pom.xml
index 3249a3456..4ba2d3f9d 100644
--- a/java/fory-core/pom.xml
+++ b/java/fory-core/pom.xml
@@ -25,7 +25,7 @@
   <parent>
     <groupId>org.apache.fory</groupId>
     <artifactId>fory-parent</artifactId>
-    <version>0.15.0-SNAPSHOT</version>
+    <version>0.16.0-SNAPSHOT</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
 
diff --git a/java/fory-extensions/pom.xml b/java/fory-extensions/pom.xml
index 25a30bf1c..a919748ee 100644
--- a/java/fory-extensions/pom.xml
+++ b/java/fory-extensions/pom.xml
@@ -25,7 +25,7 @@
   <parent>
     <groupId>org.apache.fory</groupId>
     <artifactId>fory-parent</artifactId>
-    <version>0.15.0-SNAPSHOT</version>
+    <version>0.16.0-SNAPSHOT</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
 
diff --git a/java/fory-format/pom.xml b/java/fory-format/pom.xml
index 19e685b3e..fa9ed2092 100644
--- a/java/fory-format/pom.xml
+++ b/java/fory-format/pom.xml
@@ -25,7 +25,7 @@
   <parent>
     <groupId>org.apache.fory</groupId>
     <artifactId>fory-parent</artifactId>
-    <version>0.15.0-SNAPSHOT</version>
+    <version>0.16.0-SNAPSHOT</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
 
diff --git a/java/fory-graalvm-feature/pom.xml 
b/java/fory-graalvm-feature/pom.xml
index 50c63f5d7..2e436dbae 100644
--- a/java/fory-graalvm-feature/pom.xml
+++ b/java/fory-graalvm-feature/pom.xml
@@ -25,7 +25,7 @@
   <parent>
     <artifactId>fory-parent</artifactId>
     <groupId>org.apache.fory</groupId>
-    <version>0.15.0-SNAPSHOT</version>
+    <version>0.16.0-SNAPSHOT</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
   <modelVersion>4.0.0</modelVersion>
diff --git a/java/fory-latest-jdk-tests/pom.xml 
b/java/fory-latest-jdk-tests/pom.xml
index 000b1adcf..73d6b5e8e 100644
--- a/java/fory-latest-jdk-tests/pom.xml
+++ b/java/fory-latest-jdk-tests/pom.xml
@@ -25,7 +25,7 @@
   <parent>
     <groupId>org.apache.fory</groupId>
     <artifactId>fory-parent</artifactId>
-    <version>0.15.0-SNAPSHOT</version>
+    <version>0.16.0-SNAPSHOT</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <artifactId>fory-latest-jdk-tests</artifactId>
diff --git a/java/fory-simd/pom.xml b/java/fory-simd/pom.xml
index 7dabd430a..91d8fde8b 100644
--- a/java/fory-simd/pom.xml
+++ b/java/fory-simd/pom.xml
@@ -25,7 +25,7 @@
   <parent>
     <groupId>org.apache.fory</groupId>
     <artifactId>fory-parent</artifactId>
-    <version>0.15.0-SNAPSHOT</version>
+    <version>0.16.0-SNAPSHOT</version>
   </parent>
     <modelVersion>4.0.0</modelVersion>
 
diff --git a/java/fory-test-core/pom.xml b/java/fory-test-core/pom.xml
index 74a1b036f..d8d23bdf4 100644
--- a/java/fory-test-core/pom.xml
+++ b/java/fory-test-core/pom.xml
@@ -25,7 +25,7 @@
   <parent>
     <artifactId>fory-parent</artifactId>
     <groupId>org.apache.fory</groupId>
-    <version>0.15.0-SNAPSHOT</version>
+    <version>0.16.0-SNAPSHOT</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
 
diff --git a/java/fory-testsuite/pom.xml b/java/fory-testsuite/pom.xml
index 491679e57..ca091c464 100644
--- a/java/fory-testsuite/pom.xml
+++ b/java/fory-testsuite/pom.xml
@@ -25,7 +25,7 @@
   <parent>
     <artifactId>fory-parent</artifactId>
     <groupId>org.apache.fory</groupId>
-    <version>0.15.0-SNAPSHOT</version>
+    <version>0.16.0-SNAPSHOT</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
 
diff --git a/java/pom.xml b/java/pom.xml
index e573fbe96..bbd21e561 100644
--- a/java/pom.xml
+++ b/java/pom.xml
@@ -33,7 +33,7 @@
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-parent</artifactId>
   <packaging>pom</packaging>
-  <version>0.15.0-SNAPSHOT</version>
+  <version>0.16.0-SNAPSHOT</version>
   <name>Fory Project Parent POM</name>
   <description>
     Apache Fory™ is a blazingly fast multi-language serialization framework 
powered by jit and zero-copy.
diff --git a/javascript/packages/fory/package.json 
b/javascript/packages/fory/package.json
index c7888c6a7..d78763409 100644
--- a/javascript/packages/fory/package.json
+++ b/javascript/packages/fory/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@apache-fory/fory",
-  "version": "0.15.0-alpha.0",
+  "version": "0.16.0-alpha.0",
   "description": "Apache Fory™ is a blazingly fast multi-language 
serialization framework powered by jit and zero-copy",
   "main": "dist/index.js",
   "scripts": {
diff --git a/javascript/packages/hps/package.json 
b/javascript/packages/hps/package.json
index aa283a12d..2b2ae285c 100644
--- a/javascript/packages/hps/package.json
+++ b/javascript/packages/hps/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@apache-fory/hps",
-  "version": "0.15.0-alpha.0",
+  "version": "0.16.0-alpha.0",
   "description": "Apache Fory™ nodejs high-performance suite",
   "main": "dist/index.js",
   "files": [
diff --git a/kotlin/README.md b/kotlin/README.md
index d0cfff663..a3959fe2e 100644
--- a/kotlin/README.md
+++ b/kotlin/README.md
@@ -167,14 +167,14 @@ KotlinSerializers.registerSerializers(fory)
 <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")
 ```
 
 ## Building
diff --git a/kotlin/pom.xml b/kotlin/pom.xml
index 188efe727..eec637e37 100644
--- a/kotlin/pom.xml
+++ b/kotlin/pom.xml
@@ -30,7 +30,7 @@
 
     <groupId>org.apache.fory</groupId>
     <artifactId>fory-kotlin</artifactId>
-    <version>0.15.0-SNAPSHOT</version>
+    <version>0.16.0-SNAPSHOT</version>
     <modelVersion>4.0.0</modelVersion>
 
     <properties>
diff --git a/python/pyfory/__init__.py b/python/pyfory/__init__.py
index 08479adf5..a80b447dd 100644
--- a/python/pyfory/__init__.py
+++ b/python/pyfory/__init__.py
@@ -119,7 +119,7 @@ from pyfory.type_util import (  # noqa: F401 # pylint: 
disable=unused-import
 from pyfory.policy import DeserializationPolicy  # noqa: F401 # pylint: 
disable=unused-import
 from pyfory.buffer import Buffer  # noqa: F401 # pylint: disable=unused-import
 
-__version__ = "0.15.0.dev0"
+__version__ = "0.16.0.dev0"
 
 __all__ = [
     # Core classes
diff --git a/rust/Cargo.toml b/rust/Cargo.toml
index 77f10f4e3..cdf5c9837 100644
--- a/rust/Cargo.toml
+++ b/rust/Cargo.toml
@@ -30,7 +30,7 @@ exclude = [
 resolver = "2"
 
 [workspace.package]
-version = "0.15.0-alpha.0"
+version = "0.16.0-alpha.0"
 rust-version = "1.70"
 description = "Apache Fory: Blazingly fast multi-language serialization 
framework with trait objects and reference support."
 license = "Apache-2.0"
@@ -42,5 +42,5 @@ keywords = ["serialization", "serde", "trait-object", 
"zero-copy", "schema-evolu
 categories = ["encoding"]
 
 [workspace.dependencies]
-fory-core = { path = "fory-core", version = "0.15.0-alpha.0" }
-fory-derive = { path = "fory-derive", version = "0.15.0-alpha.0" }
+fory-core = { path = "fory-core", version = "0.16.0-alpha.0" }
+fory-derive = { path = "fory-derive", version = "0.16.0-alpha.0" }
diff --git a/scala/README.md b/scala/README.md
index 4a9eaca0c..5a69099ca 100644
--- a/scala/README.md
+++ b/scala/README.md
@@ -169,7 +169,7 @@ ScalaSerializers.registerSerializers(fory)
 Add the dependency with sbt:
 
 ```sbt
-libraryDependencies += "org.apache.fory" %% "fory-scala" % "0.14.1"
+libraryDependencies += "org.apache.fory" %% "fory-scala" % "0.15.0"
 ```
 
 ## Building
diff --git a/scala/build.sbt b/scala/build.sbt
index 6f6040093..957c1b0c2 100644
--- a/scala/build.sbt
+++ b/scala/build.sbt
@@ -16,7 +16,7 @@
  * limitations under the License.
  */
 
-val foryVersion = "0.15.0-SNAPSHOT"
+val foryVersion = "0.16.0-SNAPSHOT"
 val scala213Version = "2.13.15"
 ThisBuild / apacheSonatypeProjectProfile := "fory"
 version := foryVersion


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

Reply via email to