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 e05961e1d1677782ec029af09699acef85fb81ca Author: chaokunyang <[email protected]> AuthorDate: Fri Sep 4 06:12:42 2026 +0000 🔄 synced local 'docs/start/' with remote 'docs/start/' --- docs/start/cpp.md | 2 +- docs/start/csharp.md | 2 +- docs/start/dart.md | 2 +- docs/start/go.md | 2 +- docs/start/java.md | 6 +++--- docs/start/javascript.md | 4 ++-- docs/start/kotlin.md | 4 ++-- docs/start/python.md | 2 +- docs/start/rust.md | 2 +- docs/start/scala.md | 2 +- docs/start/swift.md | 2 +- 11 files changed, 15 insertions(+), 15 deletions(-) diff --git a/docs/start/cpp.md b/docs/start/cpp.md index 4b8931b1144..70b56620961 100644 --- a/docs/start/cpp.md +++ b/docs/start/cpp.md @@ -45,7 +45,7 @@ include(FetchContent) FetchContent_Declare( fory GIT_REPOSITORY https://github.com/apache/fory.git - GIT_TAG v1.7.0 + GIT_TAG v1.7.1 SOURCE_SUBDIR cpp ) FetchContent_MakeAvailable(fory) diff --git a/docs/start/csharp.md b/docs/start/csharp.md index fca5acc643f..9affebdec6c 100644 --- a/docs/start/csharp.md +++ b/docs/start/csharp.md @@ -36,7 +36,7 @@ Create a console project and add the released package: ```bash dotnet new console -n ForyExample cd ForyExample -dotnet add package Apache.Fory --version 1.7.0 +dotnet add package Apache.Fory --version 1.7.1 ``` Replace `Program.cs` with: diff --git a/docs/start/dart.md b/docs/start/dart.md index 1977c2077a4..6993ada37cb 100644 --- a/docs/start/dart.md +++ b/docs/start/dart.md @@ -36,7 +36,7 @@ Add Fory and the generator to `pubspec.yaml`: ```yaml dependencies: - fory: 1.7.0 + fory: 1.7.1 dev_dependencies: build_runner: ^2.4.0 diff --git a/docs/start/go.md b/docs/start/go.md index d2c6db2d564..3f202862af4 100644 --- a/docs/start/go.md +++ b/docs/start/go.md @@ -38,7 +38,7 @@ Create a module and install the released Fory module: mkdir fory-example cd fory-example go mod init example.com/fory-example -go get github.com/apache/fory/go/[email protected] +go get github.com/apache/fory/go/[email protected] ``` If a Go proxy has not picked up a new submodule tag yet, retry later or use diff --git a/docs/start/java.md b/docs/start/java.md index a6093037de2..0e910fb28df 100644 --- a/docs/start/java.md +++ b/docs/start/java.md @@ -44,14 +44,14 @@ Maven: <dependency> <groupId>org.apache.fory</groupId> <artifactId>fory-core</artifactId> - <version>1.7.0</version> + <version>1.7.1</version> </dependency> ``` Gradle: ```kotlin -implementation("org.apache.fory:fory-core:1.7.0") +implementation("org.apache.fory:fory-core:1.7.1") ``` Run this complete xlang round trip: @@ -97,7 +97,7 @@ Fory JSON maps Java objects to standard JSON text and UTF-8 bytes. Add `fory-json` instead of `fory-core` when the application only needs JSON: ```kotlin -implementation("org.apache.fory:fory-json:1.7.0") +implementation("org.apache.fory:fory-json:1.7.1") ``` Add the import to `ForyExample.java`: diff --git a/docs/start/javascript.md b/docs/start/javascript.md index 76828774085..04e06128fe0 100644 --- a/docs/start/javascript.md +++ b/docs/start/javascript.md @@ -36,7 +36,7 @@ npm --version Install the core package: ```bash -npm install @apache-fory/[email protected] +npm install @apache-fory/[email protected] ``` Define a schema and run an xlang round trip: @@ -72,7 +72,7 @@ JavaScript uses xlang mode. Continue with For the optional Node.js string fast path, install the matching package version: ```bash -npm install @apache-fory/[email protected] @apache-fory/[email protected] +npm install @apache-fory/[email protected] @apache-fory/[email protected] ``` ## Other Capabilities diff --git a/docs/start/kotlin.md b/docs/start/kotlin.md index edbcbd6ce4d..1244374f2ba 100644 --- a/docs/start/kotlin.md +++ b/docs/start/kotlin.md @@ -44,7 +44,7 @@ repositories { } dependencies { - implementation("org.apache.fory:fory-kotlin:1.7.0") + implementation("org.apache.fory:fory-kotlin:1.7.1") } ``` @@ -88,7 +88,7 @@ module when interoperating with ordinary JSON APIs, browsers, logs, or other JSO ```kotlin title="build.gradle.kts" dependencies { - implementation("org.apache.fory:fory-json-kotlin:1.7.0") + implementation("org.apache.fory:fory-json-kotlin:1.7.1") } ``` diff --git a/docs/start/python.md b/docs/start/python.md index c71f72c5aa1..d7a419ad5b1 100644 --- a/docs/start/python.md +++ b/docs/start/python.md @@ -35,7 +35,7 @@ python -m pip --version Install the released package: ```bash -python -m pip install pyfory==1.7.0 +python -m pip install pyfory==1.7.1 ``` Run an xlang round trip: diff --git a/docs/start/rust.md b/docs/start/rust.md index f65ef728743..8acffa0f856 100644 --- a/docs/start/rust.md +++ b/docs/start/rust.md @@ -36,7 +36,7 @@ Add the public crate: ```toml title="Cargo.toml" [dependencies] -fory = "1.7.0" +fory = "1.7.1" ``` ```rust diff --git a/docs/start/scala.md b/docs/start/scala.md index d0be44646e4..c3c9913bfc1 100644 --- a/docs/start/scala.md +++ b/docs/start/scala.md @@ -37,7 +37,7 @@ Add the Fory Scala library to `build.sbt`: ```sbt ThisBuild / scalaVersion := "3.3.1" -libraryDependencies += "org.apache.fory" %% "fory-scala" % "1.7.0" +libraryDependencies += "org.apache.fory" %% "fory-scala" % "1.7.1" ``` Create `src/main/scala/ScalaExample.scala`: diff --git a/docs/start/swift.md b/docs/start/swift.md index efd8c8c4dd3..67a499668ac 100644 --- a/docs/start/swift.md +++ b/docs/start/swift.md @@ -42,7 +42,7 @@ Add the released package and depend on its `Fory` library in the generated `Pack ```swift title="Package.swift" dependencies: [ - .package(url: "https://github.com/apache/fory.git", exact: "1.7.0") + .package(url: "https://github.com/apache/fory.git", exact: "1.7.1") ], targets: [ .executableTarget( --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
