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 89b97676d chore: bump release version to 0.13.1 (#2901)
89b97676d is described below

commit 89b97676da5ba5cc38c7676e0a5a8761a67312db
Author: Shawn Yang <[email protected]>
AuthorDate: Thu Nov 6 13:25:24 2025 +0800

    chore: bump release version to 0.13.1 (#2901)
    
    ## Why?
    
    <!-- Describe the purpose of this PR. -->
    
    ## What does this PR do?
    
    bump release version to 0.13.1
    
    ## Related issues
    
    <!--
    Is there any related issue? If this PR closes them you say say
    fix/closes:
    
    - #xxxx0
    - #xxxx1
    - Fixes #xxxx2
    -->
    
    ## Does this PR introduce any user-facing change?
    
    <!--
    If any user-facing interface changes, please [open an
    issue](https://github.com/apache/fory/issues/new/choose) describing the
    need to do so and update the document if necessary.
    
    Delete section if not applicable.
    -->
    
    - [ ] Does this PR introduce any public API change?
    - [ ] Does this PR introduce any binary protocol compatibility change?
    
    ## Benchmark
    
    <!--
    When the PR has an impact on performance (if you don't know whether the
    PR will have an impact on performance, you can submit the PR first, and
    if it will have impact on performance, the code reviewer will explain
    it), be sure to attach a benchmark data here.
    
    Delete section if not applicable.
    -->
---
 README.md                              | 12 ++++++------
 docs/guide/java_serialization_guide.md |  2 +-
 docs/guide/scala_guide.md              |  2 +-
 java/README.md                         | 16 ++++++++--------
 4 files changed, 16 insertions(+), 16 deletions(-)

diff --git a/README.md b/README.md
index 578cca683..1be87278b 100644
--- a/README.md
+++ b/README.md
@@ -128,14 +128,14 @@ For more detailed benchmarks and methodology, see [Rust 
Benchmarks](benchmarks/r
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-core</artifactId>
-  <version>0.13.0</version>
+  <version>0.13.1</version>
 </dependency>
 <!-- Optional row format support -->
 <!--
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-format</artifactId>
-  <version>0.13.0</version>
+  <version>0.13.1</version>
 </dependency>
 -->
 <!-- SIMD acceleration for array compression (Java 16+) -->
@@ -143,7 +143,7 @@ For more detailed benchmarks and methodology, see [Rust 
Benchmarks](benchmarks/r
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-simd</artifactId>
-  <version>0.13.0</version>
+  <version>0.13.1</version>
 </dependency>
 -->
 ```
@@ -154,10 +154,10 @@ Snapshots are available from 
`https://repository.apache.org/snapshots/` (version
 
 ```sbt
 // Scala 2.13
-libraryDependencies += "org.apache.fory" % "fory-scala_2.13" % "0.13.0"
+libraryDependencies += "org.apache.fory" % "fory-scala_2.13" % "0.13.1"
 
 // Scala 3
-libraryDependencies += "org.apache.fory" % "fory-scala_3" % "0.13.0"
+libraryDependencies += "org.apache.fory" % "fory-scala_3" % "0.13.1"
 ```
 
 **Kotlin**:
@@ -166,7 +166,7 @@ libraryDependencies += "org.apache.fory" % "fory-scala_3" % 
"0.13.0"
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-kotlin</artifactId>
-  <version>0.13.0</version>
+  <version>0.13.1</version>
 </dependency>
 ```
 
diff --git a/docs/guide/java_serialization_guide.md 
b/docs/guide/java_serialization_guide.md
index bb1791d55..2377da16c 100644
--- a/docs/guide/java_serialization_guide.md
+++ b/docs/guide/java_serialization_guide.md
@@ -286,7 +286,7 @@ For Maven:
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-simd</artifactId>
-  <version>0.13.0</version>
+  <version>0.13.1</version>
 </dependency>
 ```
 
diff --git a/docs/guide/scala_guide.md b/docs/guide/scala_guide.md
index 1070a5ac5..d8e3975b5 100644
--- a/docs/guide/scala_guide.md
+++ b/docs/guide/scala_guide.md
@@ -34,7 +34,7 @@ Scala 2 and 3 are both supported.
 To add a dependency on Apache Fory™ scala for with sbt, use the following:
 
 ```sbt
-libraryDependencies += "org.apache.fory" %% "fory-scala" % "0.13.0"
+libraryDependencies += "org.apache.fory" %% "fory-scala" % "0.13.1"
 ```
 
 ## Quick Start
diff --git a/java/README.md b/java/README.md
index 97ac71a97..7acd59ccd 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.13.0</version>
+  <version>0.13.1</version>
 </dependency>
 
 <!-- Optional: Row format support -->
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-format</artifactId>
-  <version>0.13.0</version>
+  <version>0.13.1</version>
 </dependency>
 
 <!-- Optional: Serializers for Protobuf data -->
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-extensions</artifactId>
-  <version>0.13.0</version>
+  <version>0.13.1</version>
 </dependency>
 
 <!-- Optional: SIMD acceleration (Java 16+) -->
 <dependency>
   <groupId>org.apache.fory</groupId>
   <artifactId>fory-simd</artifactId>
-  <version>0.13.0</version>
+  <version>0.13.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.13.0'
+    implementation 'org.apache.fory:fory-core:0.13.1'
     // Optional modules
-    implementation 'org.apache.fory:fory-format:0.13.0'
-    implementation 'org.apache.fory:fory-simd:0.13.0'
-    implementation 'org.apache.fory:fory-extensions:0.13.0'
+    implementation 'org.apache.fory:fory-format:0.13.1'
+    implementation 'org.apache.fory:fory-simd:0.13.1'
+    implementation 'org.apache.fory:fory-extensions:0.13.1'
 }
 ```
 


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

Reply via email to