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 54d2f974d 🔄 synced local 'docs/docs/guide/' with remote 'docs/guide/'
54d2f974d is described below
commit 54d2f974d4ecc0d5aed3bdb5b55339e2f3b25b77
Author: chaokunyang <[email protected]>
AuthorDate: Mon Dec 29 08:18:17 2025 +0000
🔄 synced local 'docs/docs/guide/' with remote 'docs/guide/'
---
docs/docs/guide/cpp/index.md | 8 ++++----
docs/docs/guide/java/compression.md | 2 +-
docs/docs/guide/kotlin/index.md | 4 ++--
docs/docs/guide/scala/index.md | 2 +-
docs/docs/guide/xlang/getting-started.md | 4 ++--
5 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/docs/docs/guide/cpp/index.md b/docs/docs/guide/cpp/index.md
index 85a5beaca..4c829b0dd 100644
--- a/docs/docs/guide/cpp/index.md
+++ b/docs/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/docs/guide/java/compression.md
b/docs/docs/guide/java/compression.md
index 852c69d0c..b43f36eda 100644
--- a/docs/docs/guide/java/compression.md
+++ b/docs/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/docs/guide/kotlin/index.md b/docs/docs/guide/kotlin/index.md
index 5d0b26d4e..9c3f91312 100644
--- a/docs/docs/guide/kotlin/index.md
+++ b/docs/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/docs/guide/scala/index.md b/docs/docs/guide/scala/index.md
index b81a9a4a4..000318698 100644
--- a/docs/docs/guide/scala/index.md
+++ b/docs/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/docs/guide/xlang/getting-started.md
b/docs/docs/guide/xlang/getting-started.md
index 3645d77d3..adf77b353 100644
--- a/docs/docs/guide/xlang/getting-started.md
+++ b/docs/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
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]