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

pandalee 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 9bc7d6a8d chore: bump release version to 0.14.1 (#3096)
9bc7d6a8d is described below

commit 9bc7d6a8d4a79cc0b90c565ae45b638f57123f8f
Author: Shawn Yang <[email protected]>
AuthorDate: Mon Dec 29 16:15:32 2025 +0800

    chore: bump release version to 0.14.1 (#3096)
    
    ## 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 ++++----
 cpp/CMakeLists.txt                    |  2 +-
 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 +-
 java/README.md                        | 16 ++++++++--------
 javascript/package-lock.json          |  6 +++---
 javascript/packages/fory/package.json |  2 +-
 javascript/packages/hps/package.json  |  2 +-
 kotlin/README.md                      |  4 ++--
 python/pyfory/__init__.py             |  2 +-
 rust/Cargo.toml                       |  6 +++---
 scala/README.md                       |  2 +-
 17 files changed, 37 insertions(+), 37 deletions(-)

diff --git a/README.md b/README.md
index 8233f07b9..a3a7cbded 100644
--- a/README.md
+++ b/README.md
@@ -137,7 +137,7 @@ For more detailed benchmarks and methodology, see [C++ 
Benchmarks](benchmarks/cp
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-core</artifactId>
-  <version>0.14.0</version>
+  <version>0.14.1</version>
 </dependency>
 ```
 
@@ -147,10 +147,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.0"
+libraryDependencies += "org.apache.fory" % "fory-scala_2.13" % "0.14.1"
 
 // Scala 3
-libraryDependencies += "org.apache.fory" % "fory-scala_3" % "0.14.0"
+libraryDependencies += "org.apache.fory" % "fory-scala_3" % "0.14.1"
 ```
 
 **Kotlin**:
@@ -159,7 +159,7 @@ libraryDependencies += "org.apache.fory" % "fory-scala_3" % 
"0.14.0"
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-kotlin</artifactId>
-  <version>0.14.0</version>
+  <version>0.14.1</version>
 </dependency>
 ```
 
diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt
index ef368623f..60efb9e13 100644
--- a/cpp/CMakeLists.txt
+++ b/cpp/CMakeLists.txt
@@ -18,7 +18,7 @@
 cmake_minimum_required(VERSION 3.16)
 
 project(fory
-    VERSION 0.14.0
+    VERSION 0.15.0
     DESCRIPTION "Apache Fory - A blazingly fast multi-language serialization 
framework"
     LANGUAGES CXX
 )
diff --git a/docs/guide/cpp/index.md b/docs/guide/cpp/index.md
index 85a5beaca..4c829b0dd 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.0
+    GIT_TAG        v0.14.1
     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.0")
+bazel_dep(name = "fory", version = "0.14.1")
 git_override(
     module_name = "fory",
     remote = "https://github.com/apache/fory.git";,
-    commit = "v0.14.0",  # Or use a specific commit hash for reproducibility
+    commit = "v0.14.1",  # 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.0")
+bazel_dep(name = "fory", version = "0.14.1")
 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 852c69d0c..b43f36eda 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.0</version>
+  <version>0.14.1</version>
 </dependency>
 ```
 
diff --git a/docs/guide/kotlin/index.md b/docs/guide/kotlin/index.md
index 5d0b26d4e..9c3f91312 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.0</version>
+  <version>0.14.1</version>
 </dependency>
 ```
 
 ### Gradle
 
 ```kotlin
-implementation("org.apache.fory:fory-kotlin:0.14.0")
+implementation("org.apache.fory:fory-kotlin:0.14.1")
 ```
 
 ## Quick Start
diff --git a/docs/guide/scala/index.md b/docs/guide/scala/index.md
index b81a9a4a4..000318698 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.0"
+libraryDependencies += "org.apache.fory" %% "fory-scala" % "0.14.1"
 ```
 
 ## Quick Start
diff --git a/docs/guide/xlang/getting-started.md 
b/docs/guide/xlang/getting-started.md
index 3645d77d3..adf77b353 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.0</version>
+  <version>0.14.1</version>
 </dependency>
 ```
 
 **Gradle:**
 
 ```gradle
-implementation 'org.apache.fory:fory-core:0.14.0'
+implementation 'org.apache.fory:fory-core:0.14.1'
 ```
 
 ### Python
diff --git a/examples/cpp/hello_row/README.md b/examples/cpp/hello_row/README.md
index dfb5541f9..446cfb4e3 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.0")
+bazel_dep(name = "fory", version = "0.14.1")
 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 67a1f9284..76b494c8a 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.0")
+bazel_dep(name = "fory", version = "0.14.1")
 git_override(
     module_name = "fory",
     remote = "https://github.com/apache/fory.git";,
diff --git a/java/README.md b/java/README.md
index 1bedd5607..06fb43bcd 100644
--- a/java/README.md
+++ b/java/README.md
@@ -60,28 +60,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.0</version>
+  <version>0.14.1</version>
 </dependency>
 
 <!-- Optional: Row format support -->
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-format</artifactId>
-  <version>0.14.0</version>
+  <version>0.14.1</version>
 </dependency>
 
 <!-- Optional: Serializers for Protobuf data -->
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-extensions</artifactId>
-  <version>0.14.0</version>
+  <version>0.14.1</version>
 </dependency>
 
 <!-- Optional: SIMD acceleration (Java 16+) -->
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-simd</artifactId>
-  <version>0.14.0</version>
+  <version>0.14.1</version>
 </dependency>
 ```
 
@@ -89,11 +89,11 @@ Apache Fory™ Java provides blazingly-fast serialization for 
the Java ecosystem
 
 ```gradle
 dependencies {
-    implementation 'org.apache.fory:fory-core:0.14.0'
+    implementation 'org.apache.fory:fory-core:0.14.1'
     // Optional modules
-    implementation 'org.apache.fory:fory-format:0.14.0'
-    implementation 'org.apache.fory:fory-simd:0.14.0'
-    implementation 'org.apache.fory:fory-extensions:0.14.0'
+    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'
 }
 ```
 
diff --git a/javascript/package-lock.json b/javascript/package-lock.json
index 0faec8166..051e3f804 100644
--- a/javascript/package-lock.json
+++ b/javascript/package-lock.json
@@ -2779,7 +2779,7 @@
       "license": "ISC"
     },
     "node_modules/emittery": {
-      "version": "0.14.0",
+      "version": "0.14.1",
       "dev": true,
       "license": "MIT",
       "engines": {
@@ -4133,7 +4133,7 @@
         "@jest/types": "^29.6.3",
         "@types/node": "*",
         "chalk": "^4.0.0",
-        "emittery": "^0.14.0",
+        "emittery": "^0.14.1",
         "graceful-fs": "^4.2.9",
         "jest-docblock": "^29.7.0",
         "jest-environment-node": "^29.7.0",
@@ -4278,7 +4278,7 @@
         "@types/node": "*",
         "ansi-escapes": "^4.2.1",
         "chalk": "^4.0.0",
-        "emittery": "^0.14.0",
+        "emittery": "^0.14.1",
         "jest-util": "^29.7.0",
         "string-length": "^4.0.1"
       },
diff --git a/javascript/packages/fory/package.json 
b/javascript/packages/fory/package.json
index 81d86d53c..9aa8a35e1 100644
--- a/javascript/packages/fory/package.json
+++ b/javascript/packages/fory/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@apache-fory/fory",
-  "version": "0.14.0",
+  "version": "0.14.1",
   "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 23bf37b9b..b6d4e34d8 100644
--- a/javascript/packages/hps/package.json
+++ b/javascript/packages/hps/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@apache-fory/hps",
-  "version": "0.14.0",
+  "version": "0.14.1",
   "description": "Apache Fory™ nodejs high-performance suite",
   "main": "dist/index.js",
   "files": [
diff --git a/kotlin/README.md b/kotlin/README.md
index f26142ca1..d0cfff663 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.0</version>
+  <version>0.14.1</version>
 </dependency>
 ```
 
 ### Gradle
 
 ```kotlin
-implementation("org.apache.fory:fory-kotlin:0.14.0")
+implementation("org.apache.fory:fory-kotlin:0.14.1")
 ```
 
 ## Building
diff --git a/python/pyfory/__init__.py b/python/pyfory/__init__.py
index 663643343..e9668d8c2 100644
--- a/python/pyfory/__init__.py
+++ b/python/pyfory/__init__.py
@@ -85,7 +85,7 @@ from pyfory.type import (  # noqa: F401 # pylint: 
disable=unused-import
 from pyfory.policy import DeserializationPolicy  # noqa: F401 # pylint: 
disable=unused-import
 from pyfory._util import Buffer  # noqa: F401 # pylint: disable=unused-import
 
-__version__ = "0.14.0.dev"
+__version__ = "0.14.1.dev"
 
 __all__ = [
     # Core classes
diff --git a/rust/Cargo.toml b/rust/Cargo.toml
index 4b5618825..25b4588c3 100644
--- a/rust/Cargo.toml
+++ b/rust/Cargo.toml
@@ -30,7 +30,7 @@ exclude = [
 resolver = "2"
 
 [workspace.package]
-version = "0.14.0"
+version = "0.15.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.14.0" }
-fory-derive = { path = "fory-derive", version = "0.14.0" }
+fory-core = { path = "fory-core", version = "0.15.0" }
+fory-derive = { path = "fory-derive", version = "0.15.0" }
diff --git a/scala/README.md b/scala/README.md
index 1717d2994..4a9eaca0c 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.0"
+libraryDependencies += "org.apache.fory" %% "fory-scala" % "0.14.1"
 ```
 
 ## Building


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

Reply via email to