This is an automated email from the ASF dual-hosted git repository. chaokunyang pushed a commit to tag v1.2.0-rc1 in repository https://gitbox.apache.org/repos/asf/fory.git
commit 395a772f101c8b844d412df76c02dad2b0d8302a Author: chaokunyang <[email protected]> AuthorDate: Sat Jun 13 17:57:53 2026 +0800 bump version to 1.2.0 --- README.md | 24 +++++++++++----------- benchmarks/go/go.mod | 2 +- benchmarks/java/pom.xml | 2 +- benchmarks/rust/Cargo.toml | 2 +- compiler/fory_compiler/__init__.py | 2 +- compiler/pyproject.toml | 2 +- csharp/Directory.Build.props | 2 +- csharp/README.md | 2 +- dart/CHANGELOG.md | 4 ++-- dart/packages/fory-test/pubspec.yaml | 4 ++-- dart/packages/fory/CHANGELOG.md | 5 +++-- dart/packages/fory/README.md | 2 +- dart/packages/fory/pubspec.yaml | 2 +- dart/pubspec.yaml | 4 ++-- docs/compiler/compiler-guide.md | 4 ++-- 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 +++++++-------- examples/cpp/hello_row/MODULE.bazel.example | 4 ++-- examples/cpp/hello_row/README.md | 2 +- examples/cpp/hello_world/MODULE.bazel.example | 4 ++-- examples/cpp/hello_world/README.md | 2 +- go/fory/cmd/fory/main.go | 2 +- integration_tests/android_tests/README.md | 4 ++-- integration_tests/android_tests/build.gradle | 4 ++-- integration_tests/graalvm_tests/pom.xml | 2 +- integration_tests/grpc_tests/java/pom.xml | 2 +- integration_tests/grpc_tests/kotlin/pom.xml | 2 +- integration_tests/grpc_tests/python/pyproject.toml | 2 +- integration_tests/grpc_tests/rust/Cargo.toml | 2 +- integration_tests/idl_tests/dart/pubspec.yaml | 2 +- integration_tests/idl_tests/go/go.mod | 2 +- integration_tests/idl_tests/java/pom.xml | 2 +- .../idl_tests/javascript/package.json | 2 +- integration_tests/idl_tests/kotlin/pom.xml | 2 +- integration_tests/idl_tests/python/pyproject.toml | 2 +- integration_tests/idl_tests/rust/Cargo.lock | 10 +++++---- integration_tests/idl_tests/rust/Cargo.toml | 2 +- integration_tests/jdk_compatibility_tests/pom.xml | 2 +- integration_tests/jpms_tests/pom.xml | 2 +- java/README.md | 12 +++++------ java/fory-annotation-processor/pom.xml | 2 +- java/fory-core/pom.xml | 2 +- java/fory-extensions/pom.xml | 2 +- java/fory-format/pom.xml | 2 +- java/fory-graalvm-feature/pom.xml | 2 +- java/fory-latest-jdk-tests/pom.xml | 2 +- java/fory-test-core/pom.xml | 2 +- java/fory-testsuite/pom.xml | 2 +- java/pom.xml | 2 +- javascript/package-lock.json | 4 ++-- javascript/packages/core/package.json | 2 +- javascript/packages/hps/package.json | 2 +- kotlin/fory-kotlin-ksp/pom.xml | 2 +- kotlin/fory-kotlin-tests/pom.xml | 2 +- kotlin/fory-kotlin/pom.xml | 2 +- kotlin/pom.xml | 2 +- python/pyfory/__init__.py | 2 +- rust/Cargo.toml | 6 +++--- rust/README.md | 8 ++++---- scala/README.md | 2 +- scala/build.sbt | 2 +- swift/README.md | 2 +- 71 files changed, 124 insertions(+), 121 deletions(-) diff --git a/README.md b/README.md index 526b3690c..ab9cd0149 100644 --- a/README.md +++ b/README.md @@ -132,14 +132,14 @@ Maven: <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" ``` On JDK25+, open `java.lang.invoke` to Fory. Use `ALL-UNNAMED` when Fory is on @@ -160,7 +160,7 @@ Use the Fory core module name when Fory is on the module path: sbt: ```scala -libraryDependencies += "org.apache.fory" %% "fory-scala" % "1.1.0" +libraryDependencies += "org.apache.fory" %% "fory-scala" % "1.2.0" ``` **Kotlin** @@ -168,7 +168,7 @@ libraryDependencies += "org.apache.fory" %% "fory-scala" % "1.1.0" Gradle: ```kotlin -implementation("org.apache.fory:fory-kotlin:1.1.0") +implementation("org.apache.fory:fory-kotlin:1.2.0") ``` Maven: @@ -177,7 +177,7 @@ Maven: <dependency> <groupId>org.apache.fory</groupId> <artifactId>fory-kotlin</artifactId> - <version>1.1.0</version> + <version>1.2.0</version> </dependency> ``` @@ -199,7 +199,7 @@ pip install "pyfory[format]" ```toml [dependencies] -fory = "1.1.0" +fory = "1.2.0" ``` **C++** @@ -211,7 +211,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) @@ -222,8 +222,8 @@ Bazel: ```bazel # MODULE.bazel -bazel_dep(name = "fory", version = "1.1.0") -git_override(module_name = "fory", remote = "https://github.com/apache/fory.git", commit = "v1.1.0") +bazel_dep(name = "fory", version = "1.2.0") +git_override(module_name = "fory", remote = "https://github.com/apache/fory.git", commit = "v1.2.0") # BUILD deps = ["@fory//cpp/fory/serialization:fory_serialization"] @@ -256,13 +256,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 ``` @@ -272,7 +272,7 @@ 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") ], targets: [ .target( diff --git a/benchmarks/go/go.mod b/benchmarks/go/go.mod index e6f26b864..b56a0cfb2 100644 --- a/benchmarks/go/go.mod +++ b/benchmarks/go/go.mod @@ -20,7 +20,7 @@ module github.com/apache/fory/benchmarks/go go 1.25.0 require ( - github.com/apache/fory/go/fory v1.2.0-alpha.0 + github.com/apache/fory/go/fory v1.2.0 github.com/vmihailenco/msgpack/v5 v5.4.1 google.golang.org/protobuf v1.36.0 ) diff --git a/benchmarks/java/pom.xml b/benchmarks/java/pom.xml index 150536933..a67e1af6a 100644 --- a/benchmarks/java/pom.xml +++ b/benchmarks/java/pom.xml @@ -26,7 +26,7 @@ <parent> <artifactId>fory-parent</artifactId> <groupId>org.apache.fory</groupId> - <version>1.2.0-SNAPSHOT</version> + <version>1.2.0</version> </parent> <artifactId>benchmark</artifactId> diff --git a/benchmarks/rust/Cargo.toml b/benchmarks/rust/Cargo.toml index 7e0581d10..ff9116933 100644 --- a/benchmarks/rust/Cargo.toml +++ b/benchmarks/rust/Cargo.toml @@ -17,7 +17,7 @@ [package] name = "fory-benchmarks" -version = "1.2.0-alpha.0" +version = "1.2.0" edition = "2021" [[bin]] diff --git a/compiler/fory_compiler/__init__.py b/compiler/fory_compiler/__init__.py index 4e0848f56..3e8fd2832 100644 --- a/compiler/fory_compiler/__init__.py +++ b/compiler/fory_compiler/__init__.py @@ -17,7 +17,7 @@ """Fory IDL compiler for Apache Fory.""" -__version__ = "1.2.0.dev0" +__version__ = "1.2.0" from fory_compiler.ir.ast import Schema, Message, Enum, Field, EnumValue, Import from fory_compiler.frontend.fdl import FDLFrontend diff --git a/compiler/pyproject.toml b/compiler/pyproject.toml index e1dd5388d..785a8b378 100644 --- a/compiler/pyproject.toml +++ b/compiler/pyproject.toml @@ -24,7 +24,7 @@ build-backend = "setuptools.build_meta" [project] name = "fory-compiler" -version = "1.2.0.dev0" +version = "1.2.0" description = "FDL (Fory Definition Language) compiler for Apache Fory cross-language serialization" readme = "README.md" license = {text = "Apache-2.0"} diff --git a/csharp/Directory.Build.props b/csharp/Directory.Build.props index 5069948b5..fe4689677 100644 --- a/csharp/Directory.Build.props +++ b/csharp/Directory.Build.props @@ -1,6 +1,6 @@ <Project> <PropertyGroup> - <Version>1.2.0-dev</Version> + <Version>1.2.0</Version> <Authors>Apache Software Foundation</Authors> <Company>Apache Software Foundation</Company> <Description>Apache Fory for .NET provides high-performance cross-language serialization with source-generated serializers and schema evolution support.</Description> diff --git a/csharp/README.md b/csharp/README.md index f2ff72f70..31ae77433 100644 --- a/csharp/README.md +++ b/csharp/README.md @@ -31,7 +31,7 @@ From NuGet, reference the single `Apache.Fory` package. It includes the Fory lib ```xml <ItemGroup> - <PackageReference Include="Apache.Fory" Version="1.1.0" /> + <PackageReference Include="Apache.Fory" Version="1.2.0" /> </ItemGroup> ``` diff --git a/dart/CHANGELOG.md b/dart/CHANGELOG.md index c19bb8893..ade975acd 100644 --- a/dart/CHANGELOG.md +++ b/dart/CHANGELOG.md @@ -1,6 +1,6 @@ -## 1.2.0-dev +## 1.2.0 -- Start the next Dart workspace development cycle after the 1.1.0 release. +- Optimize compatible mode read ## 1.1.0 diff --git a/dart/packages/fory-test/pubspec.yaml b/dart/packages/fory-test/pubspec.yaml index b808d06b0..a9a0a626b 100644 --- a/dart/packages/fory-test/pubspec.yaml +++ b/dart/packages/fory-test/pubspec.yaml @@ -17,7 +17,7 @@ name: fory_test description: Apache Fory Dart consumer and integration tests -version: 1.2.0-dev +version: 1.2.0 resolution: workspace @@ -25,7 +25,7 @@ environment: sdk: ^3.7.0 dependencies: - fory: 1.2.0-dev + fory: 1.2.0 dev_dependencies: build_runner: '>=2.7.0 <3.0.0' diff --git a/dart/packages/fory/CHANGELOG.md b/dart/packages/fory/CHANGELOG.md index 3641ecdd3..3959c85d8 100644 --- a/dart/packages/fory/CHANGELOG.md +++ b/dart/packages/fory/CHANGELOG.md @@ -1,6 +1,7 @@ -## 1.2.0-dev +## 1.2.0 -- Start the next development cycle after the 1.1.0 release. +- Align the Dart package version with the Apache Fory 1.2.0 release. +- Publish the package metadata and documentation for the 1.2.0 stable release. ## 1.1.0 diff --git a/dart/packages/fory/README.md b/dart/packages/fory/README.md index 2a0e6d301..86c505766 100644 --- a/dart/packages/fory/README.md +++ b/dart/packages/fory/README.md @@ -23,7 +23,7 @@ Add `fory` to your package dependencies. ```yaml dependencies: - fory: ^1.1.0 + fory: ^1.2.0 dev_dependencies: build_runner: ^2.4.13 diff --git a/dart/packages/fory/pubspec.yaml b/dart/packages/fory/pubspec.yaml index 25d3db395..dfc902074 100644 --- a/dart/packages/fory/pubspec.yaml +++ b/dart/packages/fory/pubspec.yaml @@ -17,7 +17,7 @@ name: fory description: Cross-language Apache Fory runtime for Dart with generated serializers, schema evolution, and custom type support. -version: 1.2.0-dev +version: 1.2.0 homepage: https://github.com/apache/fory repository: https://github.com/apache/fory/tree/main/dart/packages/fory issue_tracker: https://github.com/apache/fory/issues diff --git a/dart/pubspec.yaml b/dart/pubspec.yaml index ef2863575..6472f1bde 100644 --- a/dart/pubspec.yaml +++ b/dart/pubspec.yaml @@ -17,7 +17,7 @@ name: fory_dart description: Apache Fory Dart workspace for the runtime package, generated serializers, and integration tests. -version: 1.2.0-dev +version: 1.2.0 # repository: https://github.com/my_org/my_repo environment: @@ -25,7 +25,7 @@ environment: # Add regular dependencies here. dependencies: - fory: 1.2.0-dev + fory: 1.2.0 build_runner: '>=2.7.0 <3.0.0' dev_dependencies: lints: ^6.1.0 diff --git a/docs/compiler/compiler-guide.md b/docs/compiler/compiler-guide.md index a89880bb2..85d5bace5 100644 --- a/docs/compiler/compiler-guide.md +++ b/docs/compiler/compiler-guide.md @@ -707,7 +707,7 @@ Add the Fory dependency to `pubspec.yaml`: ```yaml dependencies: - fory: ^1.1.0 + fory: ^1.2.0 dev_dependencies: build_runner: ^2.4.0 @@ -899,5 +899,5 @@ fory = "x.y.z" ```yaml dependencies: - fory: ^1.1.0 + fory: ^1.2.0 ``` diff --git a/docs/guide/cpp/index.md b/docs/guide/cpp/index.md index 67f591949..bc55650bb 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 138b87b45..485900d82 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 fee0e7fa9..7e5869275 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 b80bf01e5..6c467bbe1 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 580701f47..3e18de872 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 92aeb09bb..7c8a36be0 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 11919a476..4f55cb586 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 3cb6f3011..ed636344a 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 67de0b3bb..bf5a405af 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 80cea5a40..3d69867c2 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 d2aec856b..c8d2a234a 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++ diff --git a/examples/cpp/hello_row/MODULE.bazel.example b/examples/cpp/hello_row/MODULE.bazel.example index fcd7b65b0..b752f63da 100644 --- a/examples/cpp/hello_row/MODULE.bazel.example +++ b/examples/cpp/hello_row/MODULE.bazel.example @@ -28,7 +28,7 @@ bazel_dep(name = "rules_cc", version = "0.1.1") # Fory dependency # Option 1: Use git_override to fetch from GitHub (recommended for external projects) -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", @@ -36,7 +36,7 @@ git_override( ) # Option 2: Use local_path_override for local development -# 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/examples/cpp/hello_row/README.md b/examples/cpp/hello_row/README.md index 7d2a046fe..8684cffdd 100644 --- a/examples/cpp/hello_row/README.md +++ b/examples/cpp/hello_row/README.md @@ -77,7 +77,7 @@ For your own project using Fory as a dependency: ```bazel # In your MODULE.bazel -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", diff --git a/examples/cpp/hello_world/MODULE.bazel.example b/examples/cpp/hello_world/MODULE.bazel.example index fcd7b65b0..b752f63da 100644 --- a/examples/cpp/hello_world/MODULE.bazel.example +++ b/examples/cpp/hello_world/MODULE.bazel.example @@ -28,7 +28,7 @@ bazel_dep(name = "rules_cc", version = "0.1.1") # Fory dependency # Option 1: Use git_override to fetch from GitHub (recommended for external projects) -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", @@ -36,7 +36,7 @@ git_override( ) # Option 2: Use local_path_override for local development -# 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/examples/cpp/hello_world/README.md b/examples/cpp/hello_world/README.md index 679ffec4e..434d8fa92 100644 --- a/examples/cpp/hello_world/README.md +++ b/examples/cpp/hello_world/README.md @@ -70,7 +70,7 @@ For your own project using Fory as a dependency: ```bazel # In your MODULE.bazel -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", diff --git a/go/fory/cmd/fory/main.go b/go/fory/cmd/fory/main.go index 984ba3eb7..9d4ab51bb 100644 --- a/go/fory/cmd/fory/main.go +++ b/go/fory/cmd/fory/main.go @@ -36,7 +36,7 @@ var ( versionFlag = flag.Bool("version", false, "show version information") ) -const version = "1.2.0-dev" +const version = "1.2.0" func main() { flag.Parse() diff --git a/integration_tests/android_tests/README.md b/integration_tests/android_tests/README.md index 0b4315cce..44853b411 100644 --- a/integration_tests/android_tests/README.md +++ b/integration_tests/android_tests/README.md @@ -4,8 +4,8 @@ This project runs Android API 26+ instrumented tests for Java `fory-core`. The instrumented tests run against the release build type so R8/minification covers the static generated serializer path. -The tests consume `org.apache.fory:fory-core:1.2.0-SNAPSHOT` and -`org.apache.fory:fory-annotation-processor:1.2.0-SNAPSHOT` from the local Maven +The tests consume `org.apache.fory:fory-core:1.2.0` and +`org.apache.fory:fory-annotation-processor:1.2.0` from the local Maven repository, so install the Java artifacts before running Gradle: ```bash diff --git a/integration_tests/android_tests/build.gradle b/integration_tests/android_tests/build.gradle index 831ee9ca2..9df24581b 100644 --- a/integration_tests/android_tests/build.gradle +++ b/integration_tests/android_tests/build.gradle @@ -82,11 +82,11 @@ android { } dependencies { - implementation('org.apache.fory:fory-core:1.2.0-SNAPSHOT') { + implementation('org.apache.fory:fory-core:1.2.0') { exclude group: 'com.google.guava', module: 'guava' exclude group: 'org.codehaus.janino', module: 'janino' } - annotationProcessor 'org.apache.fory:fory-annotation-processor:1.2.0-SNAPSHOT' + annotationProcessor 'org.apache.fory:fory-annotation-processor:1.2.0' implementation 'com.google.guava:guava:32.1.2-android' implementation 'org.slf4j:slf4j-api:2.0.12' diff --git a/integration_tests/graalvm_tests/pom.xml b/integration_tests/graalvm_tests/pom.xml index a070e22b9..a6d190b5d 100644 --- a/integration_tests/graalvm_tests/pom.xml +++ b/integration_tests/graalvm_tests/pom.xml @@ -25,7 +25,7 @@ <parent> <groupId>org.apache.fory</groupId> <artifactId>fory-parent</artifactId> - <version>1.2.0-SNAPSHOT</version> + <version>1.2.0</version> <relativePath>../../java</relativePath> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/integration_tests/grpc_tests/java/pom.xml b/integration_tests/grpc_tests/java/pom.xml index b3432a93e..55797824f 100644 --- a/integration_tests/grpc_tests/java/pom.xml +++ b/integration_tests/grpc_tests/java/pom.xml @@ -25,7 +25,7 @@ <parent> <groupId>org.apache.fory</groupId> <artifactId>fory-parent</artifactId> - <version>1.2.0-SNAPSHOT</version> + <version>1.2.0</version> <relativePath>../../../java</relativePath> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/integration_tests/grpc_tests/kotlin/pom.xml b/integration_tests/grpc_tests/kotlin/pom.xml index c31056070..400f0d9d1 100644 --- a/integration_tests/grpc_tests/kotlin/pom.xml +++ b/integration_tests/grpc_tests/kotlin/pom.xml @@ -25,7 +25,7 @@ <parent> <groupId>org.apache.fory</groupId> <artifactId>fory-kotlin-parent</artifactId> - <version>1.2.0-SNAPSHOT</version> + <version>1.2.0</version> <relativePath>../../../kotlin/pom.xml</relativePath> </parent> diff --git a/integration_tests/grpc_tests/python/pyproject.toml b/integration_tests/grpc_tests/python/pyproject.toml index f9326ed56..e4b21e2f1 100644 --- a/integration_tests/grpc_tests/python/pyproject.toml +++ b/integration_tests/grpc_tests/python/pyproject.toml @@ -24,7 +24,7 @@ build-backend = "setuptools.build_meta" [project] name = "fory-grpc-tests" -version = "1.2.0.dev0" +version = "1.2.0" description = "gRPC compiler integration tests for Apache Fory" requires-python = ">=3.8" license = {text = "Apache-2.0"} diff --git a/integration_tests/grpc_tests/rust/Cargo.toml b/integration_tests/grpc_tests/rust/Cargo.toml index de5fe6244..70f473f86 100644 --- a/integration_tests/grpc_tests/rust/Cargo.toml +++ b/integration_tests/grpc_tests/rust/Cargo.toml @@ -23,7 +23,7 @@ members = [ resolver = "2" [workspace.package] -version = "1.2.0-alpha.0" +version = "1.2.0" edition = "2021" license = "Apache-2.0" diff --git a/integration_tests/idl_tests/dart/pubspec.yaml b/integration_tests/idl_tests/dart/pubspec.yaml index 844000910..1e8e13470 100644 --- a/integration_tests/idl_tests/dart/pubspec.yaml +++ b/integration_tests/idl_tests/dart/pubspec.yaml @@ -1,5 +1,5 @@ name: idl_dart_tests -version: 1.2.0-dev +version: 1.2.0 publish_to: none environment: diff --git a/integration_tests/idl_tests/go/go.mod b/integration_tests/idl_tests/go/go.mod index 2107ed822..b34f10692 100644 --- a/integration_tests/idl_tests/go/go.mod +++ b/integration_tests/idl_tests/go/go.mod @@ -19,7 +19,7 @@ module github.com/apache/fory/integration_tests/idl_tests/go go 1.25.0 -require github.com/apache/fory/go/fory v1.2.0-alpha.0 +require github.com/apache/fory/go/fory v1.2.0 require github.com/spaolacci/murmur3 v1.1.0 // indirect diff --git a/integration_tests/idl_tests/java/pom.xml b/integration_tests/idl_tests/java/pom.xml index 6786a98bc..f62f775a0 100644 --- a/integration_tests/idl_tests/java/pom.xml +++ b/integration_tests/idl_tests/java/pom.xml @@ -25,7 +25,7 @@ <parent> <groupId>org.apache.fory</groupId> <artifactId>fory-parent</artifactId> - <version>1.2.0-SNAPSHOT</version> + <version>1.2.0</version> <relativePath>../../java</relativePath> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/integration_tests/idl_tests/javascript/package.json b/integration_tests/idl_tests/javascript/package.json index e5f668f8c..d6675c7ae 100644 --- a/integration_tests/idl_tests/javascript/package.json +++ b/integration_tests/idl_tests/javascript/package.json @@ -1,6 +1,6 @@ { "name": "fory-idl-tests", - "version": "1.2.0-alpha.0", + "version": "1.2.0", "description": "Fory IDL integration tests for JavaScript", "main": "index.js", "scripts": { diff --git a/integration_tests/idl_tests/kotlin/pom.xml b/integration_tests/idl_tests/kotlin/pom.xml index 9bf2d20fb..d1fe6f02e 100644 --- a/integration_tests/idl_tests/kotlin/pom.xml +++ b/integration_tests/idl_tests/kotlin/pom.xml @@ -25,7 +25,7 @@ <parent> <groupId>org.apache.fory</groupId> <artifactId>fory-kotlin-parent</artifactId> - <version>1.2.0-SNAPSHOT</version> + <version>1.2.0</version> <relativePath>../../../kotlin/pom.xml</relativePath> </parent> diff --git a/integration_tests/idl_tests/python/pyproject.toml b/integration_tests/idl_tests/python/pyproject.toml index 07e457570..26dfbf0d2 100644 --- a/integration_tests/idl_tests/python/pyproject.toml +++ b/integration_tests/idl_tests/python/pyproject.toml @@ -24,7 +24,7 @@ build-backend = "setuptools.build_meta" [project] name = "fory-idl-tests" -version = "1.2.0.dev0" +version = "1.2.0" description = "IDL compiler integration tests for Apache Fory" readme = "README.md" requires-python = ">=3.8" diff --git a/integration_tests/idl_tests/rust/Cargo.lock b/integration_tests/idl_tests/rust/Cargo.lock index 0121106fc..2baafbd85 100644 --- a/integration_tests/idl_tests/rust/Cargo.lock +++ b/integration_tests/idl_tests/rust/Cargo.lock @@ -78,7 +78,7 @@ checksum = "8591b0bcc8a98a64310a2fae1bb3e9b8564dd10e381e6e28010fde8e8e8568db" [[package]] name = "fory" -version = "1.2.0-alpha.0" +version = "1.2.0" dependencies = [ "fory-core", "fory-derive", @@ -86,11 +86,12 @@ dependencies = [ [[package]] name = "fory-core" -version = "1.2.0-alpha.0" +version = "1.2.0" dependencies = [ "byteorder", "chrono", "num-bigint", + "num-traits", "num_enum", "paste", "thiserror", @@ -98,9 +99,10 @@ dependencies = [ [[package]] name = "fory-derive" -version = "1.2.0-alpha.0" +version = "1.2.0" dependencies = [ "fory-core", + "proc-macro-crate", "proc-macro2", "quote", "syn 2.0.114", @@ -138,7 +140,7 @@ dependencies = [ [[package]] name = "idl_tests" -version = "1.2.0-alpha.0" +version = "1.2.0" dependencies = [ "chrono", "fory", diff --git a/integration_tests/idl_tests/rust/Cargo.toml b/integration_tests/idl_tests/rust/Cargo.toml index fa684f153..c8319970e 100644 --- a/integration_tests/idl_tests/rust/Cargo.toml +++ b/integration_tests/idl_tests/rust/Cargo.toml @@ -17,7 +17,7 @@ [package] name = "idl_tests" -version = "1.2.0-alpha.0" +version = "1.2.0" edition = "2021" license = "Apache-2.0" diff --git a/integration_tests/jdk_compatibility_tests/pom.xml b/integration_tests/jdk_compatibility_tests/pom.xml index 9df4aeb43..c4a8570a5 100644 --- a/integration_tests/jdk_compatibility_tests/pom.xml +++ b/integration_tests/jdk_compatibility_tests/pom.xml @@ -25,7 +25,7 @@ <parent> <groupId>org.apache.fory</groupId> <artifactId>fory-parent</artifactId> - <version>1.2.0-SNAPSHOT</version> + <version>1.2.0</version> <relativePath>../../java</relativePath> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/integration_tests/jpms_tests/pom.xml b/integration_tests/jpms_tests/pom.xml index e796a80e9..cc5a0e39b 100644 --- a/integration_tests/jpms_tests/pom.xml +++ b/integration_tests/jpms_tests/pom.xml @@ -25,7 +25,7 @@ <parent> <groupId>org.apache.fory</groupId> <artifactId>fory-parent</artifactId> - <version>1.2.0-SNAPSHOT</version> + <version>1.2.0</version> <relativePath>../../java</relativePath> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/java/README.md b/java/README.md index 069e0c3b1..a0f81a64c 100644 --- a/java/README.md +++ b/java/README.md @@ -60,21 +60,21 @@ Apache Fory™ Java provides blazingly-fast serialization for the Java ecosystem <dependency> <groupId>org.apache.fory</groupId> <artifactId>fory-core</artifactId> - <version>1.1.0</version> + <version>1.2.0</version> </dependency> <!-- Optional: Row format support --> <dependency> <groupId>org.apache.fory</groupId> <artifactId>fory-format</artifactId> - <version>1.1.0</version> + <version>1.2.0</version> </dependency> <!-- Optional: Serializers for Protobuf data --> <dependency> <groupId>org.apache.fory</groupId> <artifactId>fory-extensions</artifactId> - <version>1.1.0</version> + <version>1.2.0</version> </dependency> ``` @@ -83,10 +83,10 @@ Apache Fory™ Java provides blazingly-fast serialization for the Java ecosystem ```gradle dependencies { - implementation 'org.apache.fory:fory-core:1.1.0' + implementation 'org.apache.fory:fory-core:1.2.0' // Optional modules - implementation 'org.apache.fory:fory-format:1.1.0' - implementation 'org.apache.fory:fory-extensions:1.1.0' + implementation 'org.apache.fory:fory-format:1.2.0' + implementation 'org.apache.fory:fory-extensions:1.2.0' } ``` diff --git a/java/fory-annotation-processor/pom.xml b/java/fory-annotation-processor/pom.xml index f965342e5..58423db2e 100644 --- a/java/fory-annotation-processor/pom.xml +++ b/java/fory-annotation-processor/pom.xml @@ -25,7 +25,7 @@ <parent> <groupId>org.apache.fory</groupId> <artifactId>fory-parent</artifactId> - <version>1.2.0-SNAPSHOT</version> + <version>1.2.0</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/java/fory-core/pom.xml b/java/fory-core/pom.xml index 1dd276218..04795f310 100644 --- a/java/fory-core/pom.xml +++ b/java/fory-core/pom.xml @@ -25,7 +25,7 @@ <parent> <groupId>org.apache.fory</groupId> <artifactId>fory-parent</artifactId> - <version>1.2.0-SNAPSHOT</version> + <version>1.2.0</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/java/fory-extensions/pom.xml b/java/fory-extensions/pom.xml index 1bcfc99e3..1365aff77 100644 --- a/java/fory-extensions/pom.xml +++ b/java/fory-extensions/pom.xml @@ -25,7 +25,7 @@ <parent> <groupId>org.apache.fory</groupId> <artifactId>fory-parent</artifactId> - <version>1.2.0-SNAPSHOT</version> + <version>1.2.0</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/java/fory-format/pom.xml b/java/fory-format/pom.xml index 972c552d6..916da081d 100644 --- a/java/fory-format/pom.xml +++ b/java/fory-format/pom.xml @@ -25,7 +25,7 @@ <parent> <groupId>org.apache.fory</groupId> <artifactId>fory-parent</artifactId> - <version>1.2.0-SNAPSHOT</version> + <version>1.2.0</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/java/fory-graalvm-feature/pom.xml b/java/fory-graalvm-feature/pom.xml index 99e3bc000..440eba6d2 100644 --- a/java/fory-graalvm-feature/pom.xml +++ b/java/fory-graalvm-feature/pom.xml @@ -25,7 +25,7 @@ <parent> <artifactId>fory-parent</artifactId> <groupId>org.apache.fory</groupId> - <version>1.2.0-SNAPSHOT</version> + <version>1.2.0</version> <relativePath>../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/java/fory-latest-jdk-tests/pom.xml b/java/fory-latest-jdk-tests/pom.xml index 7f4b045be..6592f9656 100644 --- a/java/fory-latest-jdk-tests/pom.xml +++ b/java/fory-latest-jdk-tests/pom.xml @@ -25,7 +25,7 @@ <parent> <groupId>org.apache.fory</groupId> <artifactId>fory-parent</artifactId> - <version>1.2.0-SNAPSHOT</version> + <version>1.2.0</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>fory-latest-jdk-tests</artifactId> diff --git a/java/fory-test-core/pom.xml b/java/fory-test-core/pom.xml index 02f7b806c..83a5aff56 100644 --- a/java/fory-test-core/pom.xml +++ b/java/fory-test-core/pom.xml @@ -25,7 +25,7 @@ <parent> <artifactId>fory-parent</artifactId> <groupId>org.apache.fory</groupId> - <version>1.2.0-SNAPSHOT</version> + <version>1.2.0</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/java/fory-testsuite/pom.xml b/java/fory-testsuite/pom.xml index ab92958d0..843eea10d 100644 --- a/java/fory-testsuite/pom.xml +++ b/java/fory-testsuite/pom.xml @@ -25,7 +25,7 @@ <parent> <artifactId>fory-parent</artifactId> <groupId>org.apache.fory</groupId> - <version>1.2.0-SNAPSHOT</version> + <version>1.2.0</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/java/pom.xml b/java/pom.xml index 08d3cac45..2937757c9 100644 --- a/java/pom.xml +++ b/java/pom.xml @@ -33,7 +33,7 @@ <groupId>org.apache.fory</groupId> <artifactId>fory-parent</artifactId> <packaging>pom</packaging> - <version>1.2.0-SNAPSHOT</version> + <version>1.2.0</version> <name>Fory Project Parent POM</name> <description> Apache Fory™ is a blazingly fast multi-language serialization framework powered by jit and zero-copy. diff --git a/javascript/package-lock.json b/javascript/package-lock.json index a6939fd31..9ee173f58 100644 --- a/javascript/package-lock.json +++ b/javascript/package-lock.json @@ -6922,7 +6922,7 @@ }, "packages/core": { "name": "@apache-fory/core", - "version": "1.2.0-alpha.0", + "version": "1.2.0", "license": "Apache-2.0", "workspaces": [ "packages/hps" @@ -6959,7 +6959,7 @@ }, "packages/hps": { "name": "@apache-fory/hps", - "version": "1.2.0-alpha.0", + "version": "1.2.0", "hasInstallScript": true, "license": "Apache-2.0", "dependencies": { diff --git a/javascript/packages/core/package.json b/javascript/packages/core/package.json index b148802da..e0d518adc 100644 --- a/javascript/packages/core/package.json +++ b/javascript/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@apache-fory/core", - "version": "1.2.0-alpha.0", + "version": "1.2.0", "description": "Apache Fory™ is a blazingly fast multi-language serialization framework powered by jit and zero-copy", "homepage": "https://fory.apache.org/docs/guide/javascript", "main": "dist/index.js", diff --git a/javascript/packages/hps/package.json b/javascript/packages/hps/package.json index 94edf8bcd..d013f56cc 100644 --- a/javascript/packages/hps/package.json +++ b/javascript/packages/hps/package.json @@ -1,6 +1,6 @@ { "name": "@apache-fory/hps", - "version": "1.2.0-alpha.0", + "version": "1.2.0", "description": "Apache Fory™ nodejs high-performance suite", "homepage": "https://fory.apache.org/docs/guide/javascript", "main": "dist/index.js", diff --git a/kotlin/fory-kotlin-ksp/pom.xml b/kotlin/fory-kotlin-ksp/pom.xml index 2cfc4171b..e7049f649 100644 --- a/kotlin/fory-kotlin-ksp/pom.xml +++ b/kotlin/fory-kotlin-ksp/pom.xml @@ -25,7 +25,7 @@ <parent> <groupId>org.apache.fory</groupId> <artifactId>fory-kotlin-parent</artifactId> - <version>1.2.0-SNAPSHOT</version> + <version>1.2.0</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/kotlin/fory-kotlin-tests/pom.xml b/kotlin/fory-kotlin-tests/pom.xml index 35f12436b..5863d1924 100644 --- a/kotlin/fory-kotlin-tests/pom.xml +++ b/kotlin/fory-kotlin-tests/pom.xml @@ -25,7 +25,7 @@ <parent> <groupId>org.apache.fory</groupId> <artifactId>fory-kotlin-parent</artifactId> - <version>1.2.0-SNAPSHOT</version> + <version>1.2.0</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/kotlin/fory-kotlin/pom.xml b/kotlin/fory-kotlin/pom.xml index d37985b21..69774e514 100644 --- a/kotlin/fory-kotlin/pom.xml +++ b/kotlin/fory-kotlin/pom.xml @@ -25,7 +25,7 @@ <parent> <groupId>org.apache.fory</groupId> <artifactId>fory-kotlin-parent</artifactId> - <version>1.2.0-SNAPSHOT</version> + <version>1.2.0</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/kotlin/pom.xml b/kotlin/pom.xml index 65d2f3c86..3dd2c588a 100644 --- a/kotlin/pom.xml +++ b/kotlin/pom.xml @@ -31,7 +31,7 @@ <modelVersion>4.0.0</modelVersion> <groupId>org.apache.fory</groupId> <artifactId>fory-kotlin-parent</artifactId> - <version>1.2.0-SNAPSHOT</version> + <version>1.2.0</version> <packaging>pom</packaging> <modules> diff --git a/python/pyfory/__init__.py b/python/pyfory/__init__.py index 596b1eff5..1336c4a64 100644 --- a/python/pyfory/__init__.py +++ b/python/pyfory/__init__.py @@ -135,7 +135,7 @@ from pyfory.type_util import ( # noqa: F401 # pylint: disable=unused-import ) from pyfory.policy import DeserializationPolicy # noqa: F401 # pylint: disable=unused-import -__version__ = "1.2.0.dev0" +__version__ = "1.2.0" __all__ = [ # Core classes diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 26a5f2d4e..37acd52b4 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -32,7 +32,7 @@ exclude = [ resolver = "2" [workspace.package] -version = "1.2.0-alpha.0" +version = "1.2.0" rust-version = "1.70" description = "Apache Fory: Blazingly fast multi-language serialization framework with trait objects and reference support." license = "Apache-2.0" @@ -44,5 +44,5 @@ keywords = ["serialization", "serde", "trait-object", "zero-copy", "schema-evolu categories = ["encoding"] [workspace.dependencies] -fory-core = { path = "fory-core", version = "1.2.0-alpha.0" } -fory-derive = { path = "fory-derive", version = "1.2.0-alpha.0" } +fory-core = { path = "fory-core", version = "1.2.0" } +fory-derive = { path = "fory-derive", version = "1.2.0" } diff --git a/rust/README.md b/rust/README.md index 552db0d8c..5ca847113 100644 --- a/rust/README.md +++ b/rust/README.md @@ -23,9 +23,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` @@ -38,7 +38,7 @@ Add Apache Fory™ to your `Cargo.toml`: ```toml [dependencies] -fory = "1.1.0" +fory = "1.2.0" ``` ### Basic Example diff --git a/scala/README.md b/scala/README.md index b3a4036a5..a8940e812 100644 --- a/scala/README.md +++ b/scala/README.md @@ -163,7 +163,7 @@ val fory = ForyScala.builder().withXlang(false) Add the dependency with sbt: ```sbt -libraryDependencies += "org.apache.fory" %% "fory-scala" % "1.1.0" +libraryDependencies += "org.apache.fory" %% "fory-scala" % "1.2.0" ``` ## Building diff --git a/scala/build.sbt b/scala/build.sbt index f72df29be..1419c3f40 100644 --- a/scala/build.sbt +++ b/scala/build.sbt @@ -16,7 +16,7 @@ * limitations under the License. */ -val foryVersion = "1.2.0-SNAPSHOT" +val foryVersion = "1.2.0" val scala213Version = "2.13.15" ThisBuild / apacheSonatypeProjectProfile := "fory" version := foryVersion diff --git a/swift/README.md b/swift/README.md index c0f65225f..f503a8cb8 100644 --- a/swift/README.md +++ b/swift/README.md @@ -33,7 +33,7 @@ The Swift implementation provides high-performance object graph serialization wi ```swift dependencies: [ - .package(url: "https://github.com/apache/fory.git", from: "1.1.0") + .package(url: "https://github.com/apache/fory.git", from: "1.2.0") ], targets: [ .target( --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
