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
commit 29cd24afdbedbe20c73f730eaa2cba37627def2e Author: chaokunyang <[email protected]> AuthorDate: Tue Jun 16 13:43:32 2026 +0000 π synced local 'docs/guide/' with remote 'docs/guide/' --- docs/guide/cpp/index.md | 8 ++++---- docs/guide/csharp/grpc-support.md | 4 ++-- docs/guide/csharp/index.md | 2 +- docs/guide/dart/index.md | 2 +- docs/guide/java/index.md | 4 ++-- docs/guide/kotlin/index.md | 4 ++-- docs/guide/rust/basic-serialization.md | 2 +- docs/guide/rust/grpc-support.md | 2 +- docs/guide/rust/index.md | 8 ++++---- docs/guide/scala/index.md | 2 +- docs/guide/xlang/getting-started.md | 16 ++++++++-------- 11 files changed, 27 insertions(+), 27 deletions(-) diff --git a/docs/guide/cpp/index.md b/docs/guide/cpp/index.md index 67f591949d..bc55650bb0 100644 --- a/docs/guide/cpp/index.md +++ b/docs/guide/cpp/index.md @@ -63,7 +63,7 @@ include(FetchContent) FetchContent_Declare( fory GIT_REPOSITORY https://github.com/apache/fory.git - GIT_TAG v1.1.0 + GIT_TAG v1.2.0 SOURCE_SUBDIR cpp ) FetchContent_MakeAvailable(fory) @@ -93,11 +93,11 @@ module( bazel_dep(name = "rules_cc", version = "0.1.1") -bazel_dep(name = "fory", version = "1.1.0") +bazel_dep(name = "fory", version = "1.2.0") git_override( module_name = "fory", remote = "https://github.com/apache/fory.git", - commit = "v1.1.0", # Or use a specific commit hash for reproducibility + commit = "v1.2.0", # Or use a specific commit hash for reproducibility ) ``` @@ -129,7 +129,7 @@ bazel run //:my_app For local development, you can use `local_path_override` instead: ```bazel -bazel_dep(name = "fory", version = "1.1.0") +bazel_dep(name = "fory", version = "1.2.0") local_path_override( module_name = "fory", path = "/path/to/fory", diff --git a/docs/guide/csharp/grpc-support.md b/docs/guide/csharp/grpc-support.md index 138b87b45a..485900d829 100644 --- a/docs/guide/csharp/grpc-support.md +++ b/docs/guide/csharp/grpc-support.md @@ -39,7 +39,7 @@ Server project: ```xml <ItemGroup> - <PackageReference Include="Apache.Fory" Version="1.2.0-dev" /> + <PackageReference Include="Apache.Fory" Version="1.2.0" /> <PackageReference Include="Grpc.AspNetCore" Version="2.71.0" /> </ItemGroup> ``` @@ -48,7 +48,7 @@ Client project: ```xml <ItemGroup> - <PackageReference Include="Apache.Fory" Version="1.2.0-dev" /> + <PackageReference Include="Apache.Fory" Version="1.2.0" /> <PackageReference Include="Grpc.Core.Api" Version="2.71.0" /> <PackageReference Include="Grpc.Net.Client" Version="2.71.0" /> </ItemGroup> diff --git a/docs/guide/csharp/index.md b/docs/guide/csharp/index.md index fee0e7fa9d..7e58692751 100644 --- a/docs/guide/csharp/index.md +++ b/docs/guide/csharp/index.md @@ -44,7 +44,7 @@ Reference the single `Apache.Fory` package. It includes the Fory library and the ```xml <ItemGroup> - <PackageReference Include="Apache.Fory" Version="1.1.0" /> + <PackageReference Include="Apache.Fory" Version="1.2.0" /> </ItemGroup> ``` diff --git a/docs/guide/dart/index.md b/docs/guide/dart/index.md index b80bf01e58..6c467bbe1c 100644 --- a/docs/guide/dart/index.md +++ b/docs/guide/dart/index.md @@ -46,7 +46,7 @@ Add the dependency to your `pubspec.yaml`: ```yaml dependencies: - fory: ^1.1.0 + fory: ^1.2.0 dev_dependencies: build_runner: ^2.4.0 diff --git a/docs/guide/java/index.md b/docs/guide/java/index.md index 580701f477..3e18de872f 100644 --- a/docs/guide/java/index.md +++ b/docs/guide/java/index.md @@ -58,14 +58,14 @@ Apache Foryβ’ provides blazingly fast Java object serialization with JIT compil <dependency> <groupId>org.apache.fory</groupId> <artifactId>fory-core</artifactId> - <version>1.1.0</version> + <version>1.2.0</version> </dependency> ``` ### Gradle ```kotlin -implementation("org.apache.fory:fory-core:1.1.0") +implementation("org.apache.fory:fory-core:1.2.0") ``` ### JDK25+ diff --git a/docs/guide/kotlin/index.md b/docs/guide/kotlin/index.md index 92aeb09bb1..7c8a36be0d 100644 --- a/docs/guide/kotlin/index.md +++ b/docs/guide/kotlin/index.md @@ -53,14 +53,14 @@ See [Java Features](../java/index.md#features) for complete feature list. <dependency> <groupId>org.apache.fory</groupId> <artifactId>fory-kotlin</artifactId> - <version>1.1.0</version> + <version>1.2.0</version> </dependency> ``` ### Gradle ```kotlin -implementation("org.apache.fory:fory-kotlin:1.1.0") +implementation("org.apache.fory:fory-kotlin:1.2.0") ``` ### JDK25+ diff --git a/docs/guide/rust/basic-serialization.md b/docs/guide/rust/basic-serialization.md index 11919a4760..4f55cb5864 100644 --- a/docs/guide/rust/basic-serialization.md +++ b/docs/guide/rust/basic-serialization.md @@ -147,7 +147,7 @@ let later = timestamp.checked_add_duration(duration)?; ```toml [dependencies] -fory = { version = "1.1.0", features = ["chrono"] } +fory = { version = "1.2.0", features = ["chrono"] } ``` ### Custom Types diff --git a/docs/guide/rust/grpc-support.md b/docs/guide/rust/grpc-support.md index 3cb6f30117..ed636344a1 100644 --- a/docs/guide/rust/grpc-support.md +++ b/docs/guide/rust/grpc-support.md @@ -37,7 +37,7 @@ to build streaming responses. ```toml [dependencies] -fory = "1.1.0" +fory = "1.2.0" bytes = "1" tonic = { version = "0.14", features = ["transport"] } tokio = { version = "1", features = ["macros", "rt-multi-thread"] } diff --git a/docs/guide/rust/index.md b/docs/guide/rust/index.md index 67de0b3bb0..bf5a405afa 100644 --- a/docs/guide/rust/index.md +++ b/docs/guide/rust/index.md @@ -38,9 +38,9 @@ The Rust implementation provides versatile and high-performance serialization wi | Crate | Description | Version | | --------------------------------------------------------------------------- | --------------------------------------------------------- | --------------------------------------------- | -| [`fory`](https://github.com/apache/fory/blob/main/rust/fory) | User-facing API, runtime types, and derive macros | [1.1.0](https://crates.io/crates/fory) | -| [`fory-core`](https://github.com/apache/fory/blob/main/rust/fory-core/) | Lower-level runtime crate for advanced integrations | [1.1.0](https://crates.io/crates/fory-core) | -| [`fory-derive`](https://github.com/apache/fory/blob/main/rust/fory-derive/) | Lower-level procedural macro crate for direct runtime use | [1.1.0](https://crates.io/crates/fory-derive) | +| [`fory`](https://github.com/apache/fory/blob/main/rust/fory) | User-facing API, runtime types, and derive macros | [1.2.0](https://crates.io/crates/fory) | +| [`fory-core`](https://github.com/apache/fory/blob/main/rust/fory-core/) | Lower-level runtime crate for advanced integrations | [1.2.0](https://crates.io/crates/fory-core) | +| [`fory-derive`](https://github.com/apache/fory/blob/main/rust/fory-derive/) | Lower-level procedural macro crate for direct runtime use | [1.2.0](https://crates.io/crates/fory-derive) | Most applications should depend on `fory` only. It re-exports the derive macros and the public runtime types needed by generated code. Use `fory-core` @@ -53,7 +53,7 @@ Add Apache Foryβ’ to your `Cargo.toml`: ```toml [dependencies] -fory = "1.1.0" +fory = "1.2.0" ``` ### Basic Example diff --git a/docs/guide/scala/index.md b/docs/guide/scala/index.md index 80cea5a40e..3d69867c24 100644 --- a/docs/guide/scala/index.md +++ b/docs/guide/scala/index.md @@ -49,7 +49,7 @@ See [Java Features](../java/index.md#features) for complete feature list. Add the dependency with sbt: ```sbt -libraryDependencies += "org.apache.fory" %% "fory-scala" % "1.1.0" +libraryDependencies += "org.apache.fory" %% "fory-scala" % "1.2.0" ``` ### JDK25+ diff --git a/docs/guide/xlang/getting-started.md b/docs/guide/xlang/getting-started.md index d2aec856b6..c8d2a234ad 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>1.1.0</version> + <version>1.2.0</version> </dependency> ``` **Gradle:** ```gradle -implementation 'org.apache.fory:fory-core:1.1.0' +implementation 'org.apache.fory:fory-core:1.2.0' ``` ### Python @@ -57,7 +57,7 @@ go get github.com/apache/fory/go/fory ```toml [dependencies] -fory = "1.1.0" +fory = "1.2.0" ``` ### JavaScript/TypeScript @@ -75,13 +75,13 @@ npm install @apache-fory/core @apache-fory/hps ### C\# ```bash -dotnet add package Apache.Fory --version 1.1.0 +dotnet add package Apache.Fory --version 1.2.0 ``` ### Dart ```bash -dart pub add fory:^1.1.0 +dart pub add fory:^1.2.0 dart pub add dev:build_runner ``` @@ -91,20 +91,20 @@ Add Fory to `Package.swift`: ```swift dependencies: [ - .package(url: "https://github.com/apache/fory.git", exact: "1.1.0") + .package(url: "https://github.com/apache/fory.git", exact: "1.2.0") ] ``` ### Scala ```scala -libraryDependencies += "org.apache.fory" %% "fory-scala" % "1.1.0" +libraryDependencies += "org.apache.fory" %% "fory-scala" % "1.2.0" ``` ### Kotlin ```kotlin -implementation("org.apache.fory:fory-kotlin:1.1.0") +implementation("org.apache.fory:fory-kotlin:1.2.0") ``` ### C++ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
