This is an automated email from the ASF dual-hosted git repository. chaokunyang pushed a commit to tag v0.17.0-rc2 in repository https://gitbox.apache.org/repos/asf/fory.git
commit 88e43fbbf92cec18ec7b03ce34f71034b77191d7 Author: chaokunyang <[email protected]> AuthorDate: Thu Apr 16 14:07:31 2026 +0800 bump version to 0.17.0 --- 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/packages/fory-test/pubspec.yaml | 4 ++-- dart/packages/fory/pubspec.yaml | 2 +- dart/pubspec.yaml | 4 ++-- docs/guide/csharp/index.md | 2 +- integration_tests/graalvm_tests/pom.xml | 2 +- integration_tests/idl_tests/go/go.mod | 2 +- integration_tests/idl_tests/java/pom.xml | 2 +- integration_tests/idl_tests/python/pyproject.toml | 2 +- integration_tests/idl_tests/rust/Cargo.toml | 2 +- integration_tests/jdk_compatibility_tests/pom.xml | 2 +- integration_tests/jpms_tests/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-simd/pom.xml | 2 +- java/fory-test-core/pom.xml | 2 +- java/fory-testsuite/pom.xml | 2 +- java/pom.xml | 2 +- javascript/packages/core/package.json | 2 +- javascript/packages/hps/package.json | 2 +- kotlin/pom.xml | 2 +- python/pyfory/__init__.py | 2 +- rust/Cargo.toml | 6 +++--- scala/build.sbt | 2 +- swift/README.md | 2 +- 34 files changed, 38 insertions(+), 38 deletions(-) diff --git a/benchmarks/go/go.mod b/benchmarks/go/go.mod index 02ab42a9d..d12a51913 100644 --- a/benchmarks/go/go.mod +++ b/benchmarks/go/go.mod @@ -20,7 +20,7 @@ module github.com/apache/fory/benchmarks/go go 1.24.0 require ( - github.com/apache/fory/go/fory v0.17.0-alpha.0 + github.com/apache/fory/go/fory v0.17.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 8fb94d874..ef4b2e3a0 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>0.17.0-SNAPSHOT</version> + <version>0.17.0</version> </parent> <artifactId>benchmark</artifactId> diff --git a/benchmarks/rust/Cargo.toml b/benchmarks/rust/Cargo.toml index c829b7042..8527094c9 100644 --- a/benchmarks/rust/Cargo.toml +++ b/benchmarks/rust/Cargo.toml @@ -17,7 +17,7 @@ [package] name = "fory-benchmarks" -version = "0.17.0-alpha.0" +version = "0.17.0" edition = "2021" [[bin]] diff --git a/compiler/fory_compiler/__init__.py b/compiler/fory_compiler/__init__.py index 29ffe4214..4f9fb87be 100644 --- a/compiler/fory_compiler/__init__.py +++ b/compiler/fory_compiler/__init__.py @@ -17,7 +17,7 @@ """Fory IDL compiler for Apache Fory.""" -__version__ = "0.17.0.dev0" +__version__ = "0.17.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 3cdc60554..352c83c7f 100644 --- a/compiler/pyproject.toml +++ b/compiler/pyproject.toml @@ -21,7 +21,7 @@ build-backend = "setuptools.build_meta" [project] name = "fory-compiler" -version = "0.17.0.dev0" +version = "0.17.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 f8d912e3c..f49aaab3b 100644 --- a/csharp/Directory.Build.props +++ b/csharp/Directory.Build.props @@ -1,6 +1,6 @@ <Project> <PropertyGroup> - <Version>0.16.0</Version> + <Version>0.17.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 f00edfd67..b7db2f445 100644 --- a/csharp/README.md +++ b/csharp/README.md @@ -29,7 +29,7 @@ From NuGet, reference the single `Apache.Fory` package. It includes the runtime ```xml <ItemGroup> - <PackageReference Include="Apache.Fory" Version="0.16.0" /> + <PackageReference Include="Apache.Fory" Version="0.17.0" /> </ItemGroup> ``` diff --git a/dart/packages/fory-test/pubspec.yaml b/dart/packages/fory-test/pubspec.yaml index 1b00727ec..b8bbcc649 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: 0.17.0-dev +version: 0.17.0 resolution: workspace @@ -25,7 +25,7 @@ environment: sdk: ^3.6.1 dependencies: - fory: 0.17.0-dev + fory: 0.17.0 dev_dependencies: build_runner: ^2.4.13 diff --git a/dart/packages/fory/pubspec.yaml b/dart/packages/fory/pubspec.yaml index 9bf6434b3..f75ced812 100644 --- a/dart/packages/fory/pubspec.yaml +++ b/dart/packages/fory/pubspec.yaml @@ -17,7 +17,7 @@ name: fory description: Apache Fory Dart runtime -version: 0.17.0-dev +version: 0.17.0 resolution: workspace diff --git a/dart/pubspec.yaml b/dart/pubspec.yaml index 8a3fa05eb..51ee53fe7 100644 --- a/dart/pubspec.yaml +++ b/dart/pubspec.yaml @@ -17,7 +17,7 @@ name: fory_dart description: apache fory dart support -version: 0.17.0-dev +version: 0.17.0 # repository: https://github.com/my_org/my_repo environment: @@ -25,7 +25,7 @@ environment: # Add regular dependencies here. dependencies: - fory: 0.17.0-dev + fory: 0.17.0 build_runner: ^2.4.13 dev_dependencies: lints: ^5.0.0 diff --git a/docs/guide/csharp/index.md b/docs/guide/csharp/index.md index 8aac393f5..95bcac2ac 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.16.0" /> + <PackageReference Include="Apache.Fory" Version="0.17.0" /> </ItemGroup> ``` diff --git a/integration_tests/graalvm_tests/pom.xml b/integration_tests/graalvm_tests/pom.xml index a1eda44da..3adce161f 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>0.17.0-SNAPSHOT</version> + <version>0.17.0</version> <relativePath>../../java</relativePath> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/integration_tests/idl_tests/go/go.mod b/integration_tests/idl_tests/go/go.mod index bfbd9669f..98c44d825 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.24.0 -require github.com/apache/fory/go/fory v0.17.0-alpha.0 +require github.com/apache/fory/go/fory v0.17.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 4af36ffbe..913bbb6de 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>0.17.0-SNAPSHOT</version> + <version>0.17.0</version> <relativePath>../../java</relativePath> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/integration_tests/idl_tests/python/pyproject.toml b/integration_tests/idl_tests/python/pyproject.toml index 812b5744d..e2a93938d 100644 --- a/integration_tests/idl_tests/python/pyproject.toml +++ b/integration_tests/idl_tests/python/pyproject.toml @@ -21,7 +21,7 @@ build-backend = "setuptools.build_meta" [project] name = "fory-idl-tests" -version = "0.17.0.dev0" +version = "0.17.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.toml b/integration_tests/idl_tests/rust/Cargo.toml index 228d9aee0..0b99889f4 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 = "0.17.0-alpha.0" +version = "0.17.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 99420cd4f..560ef38c9 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>0.17.0-SNAPSHOT</version> + <version>0.17.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 09723d100..400b1c1f0 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>0.17.0-SNAPSHOT</version> + <version>0.17.0</version> <relativePath>../../java</relativePath> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/java/fory-core/pom.xml b/java/fory-core/pom.xml index 8163a7130..c0e3f43d3 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>0.17.0-SNAPSHOT</version> + <version>0.17.0</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/java/fory-extensions/pom.xml b/java/fory-extensions/pom.xml index 4cb793e78..7040955f3 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>0.17.0-SNAPSHOT</version> + <version>0.17.0</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/java/fory-format/pom.xml b/java/fory-format/pom.xml index 9e89f5e26..a084a59c8 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>0.17.0-SNAPSHOT</version> + <version>0.17.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 f26c78cc8..0515fb21b 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>0.17.0-SNAPSHOT</version> + <version>0.17.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 fdc87ecd5..55bfdb332 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>0.17.0-SNAPSHOT</version> + <version>0.17.0</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>fory-latest-jdk-tests</artifactId> diff --git a/java/fory-simd/pom.xml b/java/fory-simd/pom.xml index 29ae9db2b..10899d358 100644 --- a/java/fory-simd/pom.xml +++ b/java/fory-simd/pom.xml @@ -25,7 +25,7 @@ <parent> <groupId>org.apache.fory</groupId> <artifactId>fory-parent</artifactId> - <version>0.17.0-SNAPSHOT</version> + <version>0.17.0</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/java/fory-test-core/pom.xml b/java/fory-test-core/pom.xml index dd993e79b..1d550a391 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>0.17.0-SNAPSHOT</version> + <version>0.17.0</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/java/fory-testsuite/pom.xml b/java/fory-testsuite/pom.xml index a743ecead..f867085d9 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>0.17.0-SNAPSHOT</version> + <version>0.17.0</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/java/pom.xml b/java/pom.xml index fbd9d64a9..fa9f977f3 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>0.17.0-SNAPSHOT</version> + <version>0.17.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/packages/core/package.json b/javascript/packages/core/package.json index 1e890573c..1e3a5b1c8 100644 --- a/javascript/packages/core/package.json +++ b/javascript/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@apache-fory/core", - "version": "0.17.0-alpha.0", + "version": "0.17.0", "description": "Apache Fory™ is a blazingly fast multi-language serialization framework powered by jit and zero-copy", "main": "dist/index.js", "scripts": { diff --git a/javascript/packages/hps/package.json b/javascript/packages/hps/package.json index dceea6471..1893984dd 100644 --- a/javascript/packages/hps/package.json +++ b/javascript/packages/hps/package.json @@ -1,6 +1,6 @@ { "name": "@apache-fory/hps", - "version": "0.17.0-alpha.0", + "version": "0.17.0", "description": "Apache Fory™ nodejs high-performance suite", "main": "dist/index.js", "files": [ diff --git a/kotlin/pom.xml b/kotlin/pom.xml index fd7b3129a..403baa664 100644 --- a/kotlin/pom.xml +++ b/kotlin/pom.xml @@ -30,7 +30,7 @@ <groupId>org.apache.fory</groupId> <artifactId>fory-kotlin</artifactId> - <version>0.17.0-SNAPSHOT</version> + <version>0.17.0</version> <modelVersion>4.0.0</modelVersion> <properties> diff --git a/python/pyfory/__init__.py b/python/pyfory/__init__.py index 6f74f3ff9..1dde31f75 100644 --- a/python/pyfory/__init__.py +++ b/python/pyfory/__init__.py @@ -119,7 +119,7 @@ from pyfory.type_util import ( # noqa: F401 # pylint: disable=unused-import ) from pyfory.policy import DeserializationPolicy # noqa: F401 # pylint: disable=unused-import -__version__ = "0.17.0.dev0" +__version__ = "0.17.0" __all__ = [ # Core classes diff --git a/rust/Cargo.toml b/rust/Cargo.toml index ccf4ddf09..7f6285711 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -30,7 +30,7 @@ exclude = [ resolver = "2" [workspace.package] -version = "0.17.0-alpha.0" +version = "0.17.0" rust-version = "1.70" description = "Apache Fory: Blazingly fast multi-language serialization framework with trait objects and reference support." license = "Apache-2.0" @@ -42,5 +42,5 @@ keywords = ["serialization", "serde", "trait-object", "zero-copy", "schema-evolu categories = ["encoding"] [workspace.dependencies] -fory-core = { path = "fory-core", version = "0.17.0-alpha.0" } -fory-derive = { path = "fory-derive", version = "0.17.0-alpha.0" } +fory-core = { path = "fory-core", version = "0.17.0" } +fory-derive = { path = "fory-derive", version = "0.17.0" } diff --git a/scala/build.sbt b/scala/build.sbt index f8301acbb..da8423d03 100644 --- a/scala/build.sbt +++ b/scala/build.sbt @@ -16,7 +16,7 @@ * limitations under the License. */ -val foryVersion = "0.17.0-SNAPSHOT" +val foryVersion = "0.17.0" val scala213Version = "2.13.15" ThisBuild / apacheSonatypeProjectProfile := "fory" version := foryVersion diff --git a/swift/README.md b/swift/README.md index a8c4f5064..2bcd816e8 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: "0.16.0") + .package(url: "https://github.com/apache/fory.git", from: "0.17.0") ], targets: [ .target( --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
