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 fcf41c8dd3 🔄 synced local 'docs/guide/' with remote 'docs/guide/'
fcf41c8dd3 is described below
commit fcf41c8dd3fc6ef12ff4cf3d883becc28dc35b6c
Author: chaokunyang <[email protected]>
AuthorDate: Sun Apr 19 15:43:19 2026 +0000
🔄 synced local 'docs/guide/' with remote 'docs/guide/'
---
docs/guide/cpp/index.md | 8 ++++----
docs/guide/csharp/index.md | 2 +-
docs/guide/kotlin/index.md | 4 ++--
docs/guide/scala/index.md | 2 +-
docs/guide/xlang/getting-started.md | 4 ++--
5 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/docs/guide/cpp/index.md b/docs/guide/cpp/index.md
index 344820bb0f..193cb7a8b5 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.15.0
+ GIT_TAG v0.17.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.16.0")
+bazel_dep(name = "fory", version = "0.17.0")
git_override(
module_name = "fory",
remote = "https://github.com/apache/fory.git",
- commit = "v0.15.0", # Or use a specific commit hash for reproducibility
+ commit = "v0.17.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.16.0")
+bazel_dep(name = "fory", version = "0.17.0")
local_path_override(
module_name = "fory",
path = "/path/to/fory",
diff --git a/docs/guide/csharp/index.md b/docs/guide/csharp/index.md
index 8aac393f50..95bcac2ac2 100644
--- a/docs/guide/csharp/index.md
+++ b/docs/guide/csharp/index.md
@@ -43,7 +43,7 @@ Reference the single `Apache.Fory` package. It includes the
runtime and the sour
```xml
<ItemGroup>
- <PackageReference Include="Apache.Fory" Version="0.16.0" />
+ <PackageReference Include="Apache.Fory" Version="0.17.0" />
</ItemGroup>
```
diff --git a/docs/guide/kotlin/index.md b/docs/guide/kotlin/index.md
index 16254686a9..1fcee0430b 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.16.0</version>
+ <version>0.17.0</version>
</dependency>
```
### Gradle
```kotlin
-implementation("org.apache.fory:fory-kotlin:0.16.0")
+implementation("org.apache.fory:fory-kotlin:0.17.0")
```
## Quick Start
diff --git a/docs/guide/scala/index.md b/docs/guide/scala/index.md
index f99782d544..60d5da14c5 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.16.0"
+libraryDependencies += "org.apache.fory" %% "fory-scala" % "0.17.0"
```
## Quick Start
diff --git a/docs/guide/xlang/getting-started.md
b/docs/guide/xlang/getting-started.md
index e6a4964ffe..ae0d2a17ce 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.16.0</version>
+ <version>0.17.0</version>
</dependency>
```
**Gradle:**
```gradle
-implementation 'org.apache.fory:fory-core:0.16.0'
+implementation 'org.apache.fory:fory-core:0.17.0'
```
### Python
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]