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 d33ddc19a21631f7093ed203a73c026d0e2cbecb Author: chaokunyang <[email protected]> AuthorDate: Sun May 31 14:57:43 2026 +0000 π synced local 'docs/guide/' with remote 'docs/guide/' --- docs/guide/cpp/index.md | 8 ++++---- docs/guide/csharp/index.md | 2 +- docs/guide/dart/index.md | 2 +- docs/guide/java/compression.md | 2 +- docs/guide/kotlin/index.md | 4 ++-- docs/guide/rust/basic-serialization.md | 2 +- docs/guide/rust/index.md | 2 +- docs/guide/scala/index.md | 2 +- docs/guide/xlang/getting-started.md | 16 ++++++++-------- 9 files changed, 20 insertions(+), 20 deletions(-) diff --git a/docs/guide/cpp/index.md b/docs/guide/cpp/index.md index 73b91ece50..53f7cd379b 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.0.0 + GIT_TAG v1.1.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.0.0") +bazel_dep(name = "fory", version = "1.1.0") git_override( module_name = "fory", remote = "https://github.com/apache/fory.git", - commit = "v1.0.0", # Or use a specific commit hash for reproducibility + commit = "v1.1.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.0.0") +bazel_dep(name = "fory", version = "1.1.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 1b556091b9..9d2e30f247 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 runtime and the sour ```xml <ItemGroup> - <PackageReference Include="Apache.Fory" Version="1.0.0" /> + <PackageReference Include="Apache.Fory" Version="1.1.0" /> </ItemGroup> ``` diff --git a/docs/guide/dart/index.md b/docs/guide/dart/index.md index 13affb4af2..131ce0c3a2 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.0.0 + fory: ^1.1.0 dev_dependencies: build_runner: ^2.4.0 diff --git a/docs/guide/java/compression.md b/docs/guide/java/compression.md index 3888777f00..0892e3b297 100644 --- a/docs/guide/java/compression.md +++ b/docs/guide/java/compression.md @@ -84,7 +84,7 @@ CompressedArraySerializers.registerSerializers(fory); <dependency> <groupId>org.apache.fory</groupId> <artifactId>fory-simd</artifactId> - <version>1.0.0</version> + <version>1.1.0</version> </dependency> ``` diff --git a/docs/guide/kotlin/index.md b/docs/guide/kotlin/index.md index 139a71106d..fb4ccffc40 100644 --- a/docs/guide/kotlin/index.md +++ b/docs/guide/kotlin/index.md @@ -52,14 +52,14 @@ See [Java Features](../java/index.md#features) for complete feature list. <dependency> <groupId>org.apache.fory</groupId> <artifactId>fory-kotlin</artifactId> - <version>1.0.0</version> + <version>1.1.0</version> </dependency> ``` ### Gradle ```kotlin -implementation("org.apache.fory:fory-kotlin:1.0.0") +implementation("org.apache.fory:fory-kotlin:1.1.0") ``` ## Quick Start diff --git a/docs/guide/rust/basic-serialization.md b/docs/guide/rust/basic-serialization.md index 7ae74db1cb..d8e7aa81d8 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.0.0", features = ["chrono"] } +fory = { version = "1.1.0", features = ["chrono"] } ``` ### Custom Types diff --git a/docs/guide/rust/index.md b/docs/guide/rust/index.md index b7b878db99..66a56bef1a 100644 --- a/docs/guide/rust/index.md +++ b/docs/guide/rust/index.md @@ -48,7 +48,7 @@ Add Apache Foryβ’ to your `Cargo.toml`: ```toml [dependencies] -fory = "1.0.0" +fory = "1.1.0" ``` ### Basic Example diff --git a/docs/guide/scala/index.md b/docs/guide/scala/index.md index 668e3e38ac..2c925c2854 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.0.0" +libraryDependencies += "org.apache.fory" %% "fory-scala" % "1.1.0" ``` ## Quick Start diff --git a/docs/guide/xlang/getting-started.md b/docs/guide/xlang/getting-started.md index 776f0d2683..04aeca73fa 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.0.0</version> + <version>1.1.0</version> </dependency> ``` **Gradle:** ```gradle -implementation 'org.apache.fory:fory-core:1.0.0' +implementation 'org.apache.fory:fory-core:1.1.0' ``` ### Python @@ -57,7 +57,7 @@ go get github.com/apache/fory/go/fory ```toml [dependencies] -fory = "1.0.0" +fory = "1.1.0" ``` ### JavaScript/TypeScript @@ -75,13 +75,13 @@ npm install @apache-fory/core @apache-fory/hps ### C\# ```bash -dotnet add package Apache.Fory --version 1.0.0 +dotnet add package Apache.Fory --version 1.1.0 ``` ### Dart ```bash -dart pub add fory:^1.0.0 +dart pub add fory:^1.1.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.0.0") + .package(url: "https://github.com/apache/fory.git", exact: "1.1.0") ] ``` ### Scala ```scala -libraryDependencies += "org.apache.fory" %% "fory-scala" % "1.0.0" +libraryDependencies += "org.apache.fory" %% "fory-scala" % "1.1.0" ``` ### Kotlin ```kotlin -implementation("org.apache.fory:fory-kotlin:1.0.0") +implementation("org.apache.fory:fory-kotlin:1.1.0") ``` ### C++ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
