This is an automated email from the ASF dual-hosted git repository. chaokunyang pushed a commit to tag v0.15.0-rc3 in repository https://gitbox.apache.org/repos/asf/fory.git
commit 85274e66062fb0083919be113450eccaa686f85d Author: chaokunyang <[email protected]> AuthorDate: Fri Feb 6 13:01:13 2026 +0800 bump version to 0.15.0 --- benchmarks/go_benchmark/go.mod | 2 +- benchmarks/java_benchmark/pom.xml | 2 +- benchmarks/rust_benchmark/Cargo.toml | 2 +- compiler/fory_compiler/__init__.py | 2 +- compiler/pyproject.toml | 2 +- dart/packages/fory-test/pubspec.yaml | 4 ++-- dart/packages/fory/pubspec.yaml | 2 +- dart/pubspec.yaml | 4 ++-- 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/fory/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 +- 30 files changed, 34 insertions(+), 34 deletions(-) diff --git a/benchmarks/go_benchmark/go.mod b/benchmarks/go_benchmark/go.mod index 6094fd861..2225218d2 100644 --- a/benchmarks/go_benchmark/go.mod +++ b/benchmarks/go_benchmark/go.mod @@ -20,7 +20,7 @@ module github.com/apache/fory/benchmarks/go_benchmark go 1.24.0 require ( - github.com/apache/fory/go/fory v0.15.0-alpha.0 + github.com/apache/fory/go/fory v0.15.0 github.com/vmihailenco/msgpack/v5 v5.4.1 google.golang.org/protobuf v1.36.0 ) diff --git a/benchmarks/java_benchmark/pom.xml b/benchmarks/java_benchmark/pom.xml index de5a26565..8eecbda24 100644 --- a/benchmarks/java_benchmark/pom.xml +++ b/benchmarks/java_benchmark/pom.xml @@ -26,7 +26,7 @@ <parent> <artifactId>fory-parent</artifactId> <groupId>org.apache.fory</groupId> - <version>0.15.0-SNAPSHOT</version> + <version>0.15.0</version> </parent> <artifactId>benchmark</artifactId> diff --git a/benchmarks/rust_benchmark/Cargo.toml b/benchmarks/rust_benchmark/Cargo.toml index 8dce9dc7e..57ff8cd41 100644 --- a/benchmarks/rust_benchmark/Cargo.toml +++ b/benchmarks/rust_benchmark/Cargo.toml @@ -17,7 +17,7 @@ [package] name = "fory-benchmarks" -version = "0.15.0-alpha.0" +version = "0.15.0" edition = "2021" [[bin]] diff --git a/compiler/fory_compiler/__init__.py b/compiler/fory_compiler/__init__.py index 15c3cfadd..a169c7d4b 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.15.0.dev0" +__version__ = "0.15.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 4bbf97986..7bdaae812 100644 --- a/compiler/pyproject.toml +++ b/compiler/pyproject.toml @@ -21,7 +21,7 @@ build-backend = "setuptools.build_meta" [project] name = "fory-compiler" -version = "0.15.0.dev0" +version = "0.15.0" description = "FDL (Fory Definition Language) compiler for Apache Fory cross-language serialization" readme = "README.md" license = {text = "Apache-2.0"} diff --git a/dart/packages/fory-test/pubspec.yaml b/dart/packages/fory-test/pubspec.yaml index f2b121648..94ea279f9 100644 --- a/dart/packages/fory-test/pubspec.yaml +++ b/dart/packages/fory-test/pubspec.yaml @@ -17,7 +17,7 @@ name: fory_test description: test for fory dart -version: 0.15.0-dev +version: 0.15.0 environment: sdk: ^3.6.1 @@ -25,7 +25,7 @@ environment: resolution: workspace dependencies: - fory: 0.15.0-dev + fory: 0.15.0 checks: ^0.3.0 path: ^1.9.1 yaml: ^3.1.3 diff --git a/dart/packages/fory/pubspec.yaml b/dart/packages/fory/pubspec.yaml index 33e40e5b0..ca0dc87c3 100644 --- a/dart/packages/fory/pubspec.yaml +++ b/dart/packages/fory/pubspec.yaml @@ -17,7 +17,7 @@ name: fory description: apache fory dart support -version: 0.15.0-dev +version: 0.15.0 resolution: workspace diff --git a/dart/pubspec.yaml b/dart/pubspec.yaml index c9b60639d..513571f18 100644 --- a/dart/pubspec.yaml +++ b/dart/pubspec.yaml @@ -17,7 +17,7 @@ name: fory_dart description: apache fory dart support -version: 0.15.0-dev +version: 0.15.0 # repository: https://github.com/my_org/my_repo environment: @@ -25,7 +25,7 @@ environment: # Add regular dependencies here. dependencies: - fory: 0.15.0-dev + fory: 0.15.0 build_runner: ^2.4.13 dev_dependencies: lints: ^5.0.0 diff --git a/integration_tests/graalvm_tests/pom.xml b/integration_tests/graalvm_tests/pom.xml index 95589552e..df513ecd5 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.15.0-SNAPSHOT</version> + <version>0.15.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 3485997f7..769da85cc 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.15.0-alpha.0 +require github.com/apache/fory/go/fory v0.15.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 36097e39c..e377ef816 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.15.0-SNAPSHOT</version> + <version>0.15.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 9e0160772..dff1f40cb 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.15.0.dev0" +version = "0.15.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 70144ae59..4e9eba187 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.15.0-alpha.0" +version = "0.15.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 a34eba492..6290b9729 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.15.0-SNAPSHOT</version> + <version>0.15.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 d768fba76..c48b2e9b9 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.15.0-SNAPSHOT</version> + <version>0.15.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 3249a3456..25ec5ed90 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.15.0-SNAPSHOT</version> + <version>0.15.0</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/java/fory-extensions/pom.xml b/java/fory-extensions/pom.xml index 25a30bf1c..3d0924583 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.15.0-SNAPSHOT</version> + <version>0.15.0</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/java/fory-format/pom.xml b/java/fory-format/pom.xml index 19e685b3e..bf55f4b6d 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.15.0-SNAPSHOT</version> + <version>0.15.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 50c63f5d7..d33471b99 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.15.0-SNAPSHOT</version> + <version>0.15.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 000b1adcf..d84956614 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.15.0-SNAPSHOT</version> + <version>0.15.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 7dabd430a..f52518450 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.15.0-SNAPSHOT</version> + <version>0.15.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 74a1b036f..a11439288 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.15.0-SNAPSHOT</version> + <version>0.15.0</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/java/fory-testsuite/pom.xml b/java/fory-testsuite/pom.xml index 491679e57..5153711c7 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.15.0-SNAPSHOT</version> + <version>0.15.0</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/java/pom.xml b/java/pom.xml index e573fbe96..d6c2d5258 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.15.0-SNAPSHOT</version> + <version>0.15.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/fory/package.json b/javascript/packages/fory/package.json index c7888c6a7..70b3918b7 100644 --- a/javascript/packages/fory/package.json +++ b/javascript/packages/fory/package.json @@ -1,6 +1,6 @@ { "name": "@apache-fory/fory", - "version": "0.15.0-alpha.0", + "version": "0.15.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 aa283a12d..453205fd0 100644 --- a/javascript/packages/hps/package.json +++ b/javascript/packages/hps/package.json @@ -1,6 +1,6 @@ { "name": "@apache-fory/hps", - "version": "0.15.0-alpha.0", + "version": "0.15.0", "description": "Apache Fory™ nodejs high-performance suite", "main": "dist/index.js", "files": [ diff --git a/kotlin/pom.xml b/kotlin/pom.xml index 188efe727..cf9b8068b 100644 --- a/kotlin/pom.xml +++ b/kotlin/pom.xml @@ -30,7 +30,7 @@ <groupId>org.apache.fory</groupId> <artifactId>fory-kotlin</artifactId> - <version>0.15.0-SNAPSHOT</version> + <version>0.15.0</version> <modelVersion>4.0.0</modelVersion> <properties> diff --git a/python/pyfory/__init__.py b/python/pyfory/__init__.py index 08479adf5..91d42c4dd 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 from pyfory.buffer import Buffer # noqa: F401 # pylint: disable=unused-import -__version__ = "0.15.0.dev0" +__version__ = "0.15.0" __all__ = [ # Core classes diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 77f10f4e3..25b4588c3 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -30,7 +30,7 @@ exclude = [ resolver = "2" [workspace.package] -version = "0.15.0-alpha.0" +version = "0.15.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.15.0-alpha.0" } -fory-derive = { path = "fory-derive", version = "0.15.0-alpha.0" } +fory-core = { path = "fory-core", version = "0.15.0" } +fory-derive = { path = "fory-derive", version = "0.15.0" } diff --git a/scala/build.sbt b/scala/build.sbt index 6f6040093..08c208d63 100644 --- a/scala/build.sbt +++ b/scala/build.sbt @@ -16,7 +16,7 @@ * limitations under the License. */ -val foryVersion = "0.15.0-SNAPSHOT" +val foryVersion = "0.15.0" val scala213Version = "2.13.15" ThisBuild / apacheSonatypeProjectProfile := "fory" version := foryVersion --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
