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 de58e0ec23 🔄 synced local 'docs/guide/' with remote 'docs/guide/'
de58e0ec23 is described below
commit de58e0ec23d98b84949c45ebcae2d5ffdb7ea68b
Author: chaokunyang <[email protected]>
AuthorDate: Tue Mar 17 13:53:54 2026 +0000
🔄 synced local 'docs/guide/' with remote 'docs/guide/'
---
docs/guide/cpp/index.md | 4 ++--
docs/guide/csharp/cross-language.md | 2 +-
docs/guide/csharp/index.md | 6 +++---
docs/guide/csharp/supported-types.md | 2 +-
4 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/docs/guide/cpp/index.md b/docs/guide/cpp/index.md
index 32f69bc9c9..6348faf419 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.16.0
+ GIT_TAG v0.15.0
SOURCE_SUBDIR cpp
)
FetchContent_MakeAvailable(fory)
@@ -93,7 +93,7 @@ bazel_dep(name = "fory", version = "0.16.0")
git_override(
module_name = "fory",
remote = "https://github.com/apache/fory.git",
- commit = "v0.16.0", # Or use a specific commit hash for reproducibility
+ commit = "v0.15.0", # Or use a specific commit hash for reproducibility
)
```
diff --git a/docs/guide/csharp/cross-language.md
b/docs/guide/csharp/cross-language.md
index a9ec4fa4e1..5a2af307ed 100644
--- a/docs/guide/csharp/cross-language.md
+++ b/docs/guide/csharp/cross-language.md
@@ -91,7 +91,7 @@ value = fory.deserialize(payload_from_csharp)
## Type Mapping Reference
-See [xlang guide](../xlang) for complete mapping.
+See [xlang guide](../xlang/index.md) for complete mapping.
## Best Practices
diff --git a/docs/guide/csharp/index.md b/docs/guide/csharp/index.md
index 2987a93629..8aac393f50 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.1.0" />
+ <PackageReference Include="Apache.Fory" Version="0.16.0" />
</ItemGroup>
```
@@ -99,6 +99,6 @@ User decoded = fory.Deserialize<User>(payload);
## Related Resources
-- [Cross-language serialization
specification](../../specification/xlang_serialization_spec)
-- [Cross-language guide](../xlang)
+- [Cross-language serialization
specification](../../specification/xlang_serialization_spec.md)
+- [Cross-language guide](../xlang/index.md)
- [C# source directory](https://github.com/apache/fory/tree/main/csharp)
diff --git a/docs/guide/csharp/supported-types.md
b/docs/guide/csharp/supported-types.md
index 7ecf94a269..0b63977887 100644
--- a/docs/guide/csharp/supported-types.md
+++ b/docs/guide/csharp/supported-types.md
@@ -88,7 +88,7 @@ Dynamic object payloads via `Serialize<object?>` /
`Deserialize<object?>` suppor
## Notes
- User-defined types should be registered explicitly.
-- For cross-language usage, follow the [xlang guide](../xlang).
+- For cross-language usage, follow the [xlang guide](../xlang/index.md).
## Related Topics
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]