This is an automated email from the ASF dual-hosted git repository. chaokunyang pushed a commit to tag v1.3.0-rc1 in repository https://gitbox.apache.org/repos/asf/fory.git
commit 980636b1cfc27e495150d0d134390dd720adf11c Author: chaokunyang <[email protected]> AuthorDate: Sun Jun 21 21:26:01 2026 +0800 bump version to 1.3.0 --- benchmarks/go/go.mod | 2 +- benchmarks/java/pom.xml | 2 +- benchmarks/java25/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 | 4 ++-- dart/packages/fory/README.md | 2 +- dart/packages/fory/pubspec.yaml | 2 +- dart/pubspec.yaml | 4 ++-- docs/guide/csharp/index.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 +- integration_tests/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.toml | 2 +- integration_tests/jdk_compatibility_tests/pom.xml | 2 +- integration_tests/jpms_tests/pom.xml | 2 +- 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/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 +++--- scala/build.sbt | 2 +- swift/README.md | 2 +- 51 files changed, 59 insertions(+), 59 deletions(-) diff --git a/benchmarks/go/go.mod b/benchmarks/go/go.mod index 4c3964f13..942aa312c 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.3.0-alpha.0 + github.com/apache/fory/go/fory v1.3.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 fe8778547..95b54bb5f 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.3.0-SNAPSHOT</version> + <version>1.3.0</version> </parent> <artifactId>benchmark</artifactId> diff --git a/benchmarks/java25/pom.xml b/benchmarks/java25/pom.xml index 1328d224b..60d0481df 100644 --- a/benchmarks/java25/pom.xml +++ b/benchmarks/java25/pom.xml @@ -26,7 +26,7 @@ <groupId>org.apache.fory.benchmark</groupId> <artifactId>java25-memory-access-benchmark</artifactId> - <version>1.3.0-SNAPSHOT</version> + <version>1.3.0</version> <packaging>jar</packaging> <properties> diff --git a/benchmarks/rust/Cargo.toml b/benchmarks/rust/Cargo.toml index 2fc89d5bd..815555c12 100644 --- a/benchmarks/rust/Cargo.toml +++ b/benchmarks/rust/Cargo.toml @@ -17,7 +17,7 @@ [package] name = "fory-benchmarks" -version = "1.3.0-alpha.0" +version = "1.3.0" edition = "2021" [[bin]] diff --git a/compiler/fory_compiler/__init__.py b/compiler/fory_compiler/__init__.py index c0d0b1cb7..e6f63a930 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.3.0.dev0" +__version__ = "1.3.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 74a2916c6..16746526f 100644 --- a/compiler/pyproject.toml +++ b/compiler/pyproject.toml @@ -24,7 +24,7 @@ build-backend = "setuptools.build_meta" [project] name = "fory-compiler" -version = "1.3.0.dev0" +version = "1.3.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 8891552bd..a00792502 100644 --- a/csharp/Directory.Build.props +++ b/csharp/Directory.Build.props @@ -1,6 +1,6 @@ <Project> <PropertyGroup> - <Version>1.3.0-dev</Version> + <Version>1.3.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 31ae77433..bf969ee25 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.2.0" /> + <PackageReference Include="Apache.Fory" Version="1.3.0" /> </ItemGroup> ``` diff --git a/dart/CHANGELOG.md b/dart/CHANGELOG.md index 3e82e3a25..bd5ca37cc 100644 --- a/dart/CHANGELOG.md +++ b/dart/CHANGELOG.md @@ -1,6 +1,6 @@ -## 1.3.0-dev +## 1.3.0 -- Start the next Dart workspace development cycle after the 1.2.0 release. +- Release Apache Fory Dart 1.3.0. ## 1.2.0 diff --git a/dart/packages/fory-test/pubspec.yaml b/dart/packages/fory-test/pubspec.yaml index 9e44aed63..b87513661 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.3.0-dev +version: 1.3.0 resolution: workspace @@ -25,7 +25,7 @@ environment: sdk: ^3.7.0 dependencies: - fory: 1.3.0-dev + fory: 1.3.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 88e57863e..06c4f54a9 100644 --- a/dart/packages/fory/CHANGELOG.md +++ b/dart/packages/fory/CHANGELOG.md @@ -1,6 +1,6 @@ -## 1.3.0-dev +## 1.3.0 -- Start the next development cycle after the 1.2.0 release. +- Release Apache Fory Dart 1.3.0. ## 1.2.0 diff --git a/dart/packages/fory/README.md b/dart/packages/fory/README.md index 86c505766..ecca2ef79 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.2.0 + fory: ^1.3.0 dev_dependencies: build_runner: ^2.4.13 diff --git a/dart/packages/fory/pubspec.yaml b/dart/packages/fory/pubspec.yaml index ff53ef40d..9b6e0c900 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.3.0-dev +version: 1.3.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 5c8c3e473..e1a023c6d 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.3.0-dev +version: 1.3.0 # repository: https://github.com/my_org/my_repo environment: @@ -25,7 +25,7 @@ environment: # Add regular dependencies here. dependencies: - fory: 1.3.0-dev + fory: 1.3.0 build_runner: '>=2.7.0 <3.0.0' dev_dependencies: lints: ^6.1.0 diff --git a/docs/guide/csharp/index.md b/docs/guide/csharp/index.md index 7e5869275..e808d7bf1 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.2.0" /> + <PackageReference Include="Apache.Fory" Version="1.3.0" /> </ItemGroup> ``` diff --git a/go/fory/cmd/fory/main.go b/go/fory/cmd/fory/main.go index 8e675b89b..9ecfe31e4 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.3.0-dev" +const version = "1.3.0" func main() { flag.Parse() diff --git a/integration_tests/android_tests/README.md b/integration_tests/android_tests/README.md index 2503f1fb1..2e8edce0c 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.3.0-SNAPSHOT` and -`org.apache.fory:fory-annotation-processor:1.3.0-SNAPSHOT` from the local Maven +The tests consume `org.apache.fory:fory-core:1.3.0` and +`org.apache.fory:fory-annotation-processor:1.3.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 4ac5dfd1f..b0e8bb318 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.3.0-SNAPSHOT') { + implementation('org.apache.fory:fory-core:1.3.0') { exclude group: 'com.google.guava', module: 'guava' exclude group: 'org.codehaus.janino', module: 'janino' } - annotationProcessor 'org.apache.fory:fory-annotation-processor:1.3.0-SNAPSHOT' + annotationProcessor 'org.apache.fory:fory-annotation-processor:1.3.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 71b78157a..3dc5243e1 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.3.0-SNAPSHOT</version> + <version>1.3.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 ae7548a88..518f0c641 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.3.0-SNAPSHOT</version> + <version>1.3.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 5809e77a6..089921659 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.3.0-SNAPSHOT</version> + <version>1.3.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 de8858ea9..d58b8e38e 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.3.0.dev0" +version = "1.3.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 6d13f6f13..a5857130a 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.3.0-alpha.0" +version = "1.3.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 fe2b0381c..ff5226cb3 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.3.0-dev +version: 1.3.0 publish_to: none environment: diff --git a/integration_tests/idl_tests/go/go.mod b/integration_tests/idl_tests/go/go.mod index 95ded36a1..b6b1a5bd1 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.3.0-alpha.0 +require github.com/apache/fory/go/fory v1.3.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 4278bfd17..4a72cd604 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.3.0-SNAPSHOT</version> + <version>1.3.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 af55a8ec8..79b73b799 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.3.0-alpha.0", + "version": "1.3.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 10679a52f..32048c6b9 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.3.0-SNAPSHOT</version> + <version>1.3.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 2817ab6c0..f4251440d 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.3.0.dev0" +version = "1.3.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 845654d8d..60fa55fc0 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.3.0-alpha.0" +version = "1.3.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 cd3210a12..3f39d8799 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.3.0-SNAPSHOT</version> + <version>1.3.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 4341f7ccf..b5691c42f 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.3.0-SNAPSHOT</version> + <version>1.3.0</version> <relativePath>../../java</relativePath> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/java/fory-annotation-processor/pom.xml b/java/fory-annotation-processor/pom.xml index ecdbe4320..842e3e74d 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.3.0-SNAPSHOT</version> + <version>1.3.0</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/java/fory-core/pom.xml b/java/fory-core/pom.xml index 735affa28..d012d5e63 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.3.0-SNAPSHOT</version> + <version>1.3.0</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/java/fory-extensions/pom.xml b/java/fory-extensions/pom.xml index b1d3a69b4..6c8e3e73e 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.3.0-SNAPSHOT</version> + <version>1.3.0</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/java/fory-format/pom.xml b/java/fory-format/pom.xml index f70ecc23a..012b4c644 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.3.0-SNAPSHOT</version> + <version>1.3.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 8059865d5..6a97ebdfa 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.3.0-SNAPSHOT</version> + <version>1.3.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 dea85ee00..27cd0b5cc 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.3.0-SNAPSHOT</version> + <version>1.3.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 5c51cd383..acc4cd7db 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.3.0-SNAPSHOT</version> + <version>1.3.0</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/java/fory-testsuite/pom.xml b/java/fory-testsuite/pom.xml index 5d4d9e46b..e0031b062 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.3.0-SNAPSHOT</version> + <version>1.3.0</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/java/pom.xml b/java/pom.xml index 0feb8c836..e02b261b6 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.3.0-SNAPSHOT</version> + <version>1.3.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 49b28b3d6..e4666cd42 100644 --- a/javascript/packages/core/package.json +++ b/javascript/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@apache-fory/core", - "version": "1.3.0-alpha.0", + "version": "1.3.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 f76e09945..925fbaf47 100644 --- a/javascript/packages/hps/package.json +++ b/javascript/packages/hps/package.json @@ -1,6 +1,6 @@ { "name": "@apache-fory/hps", - "version": "1.3.0-alpha.0", + "version": "1.3.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 3518c31e0..731395209 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.3.0-SNAPSHOT</version> + <version>1.3.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 538f8b4bf..00f973824 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.3.0-SNAPSHOT</version> + <version>1.3.0</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/kotlin/fory-kotlin/pom.xml b/kotlin/fory-kotlin/pom.xml index bad5cf461..de04d160a 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.3.0-SNAPSHOT</version> + <version>1.3.0</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/kotlin/pom.xml b/kotlin/pom.xml index 0807429f3..d1172ca32 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.3.0-SNAPSHOT</version> + <version>1.3.0</version> <packaging>pom</packaging> <modules> diff --git a/python/pyfory/__init__.py b/python/pyfory/__init__.py index f99a06835..0928239b0 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.3.0.dev0" +__version__ = "1.3.0" __all__ = [ # Core classes diff --git a/rust/Cargo.toml b/rust/Cargo.toml index c2fd0463c..78217494a 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -32,7 +32,7 @@ exclude = [ resolver = "2" [workspace.package] -version = "1.3.0-alpha.0" +version = "1.3.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.3.0-alpha.0" } -fory-derive = { path = "fory-derive", version = "1.3.0-alpha.0" } +fory-core = { path = "fory-core", version = "1.3.0" } +fory-derive = { path = "fory-derive", version = "1.3.0" } diff --git a/scala/build.sbt b/scala/build.sbt index c98d80ede..d2b9ce9d1 100644 --- a/scala/build.sbt +++ b/scala/build.sbt @@ -16,7 +16,7 @@ * limitations under the License. */ -val foryVersion = "1.3.0-SNAPSHOT" +val foryVersion = "1.3.0" val scala213Version = "2.13.15" ThisBuild / apacheSonatypeProjectProfile := "fory" version := foryVersion diff --git a/swift/README.md b/swift/README.md index f503a8cb8..67fed18ee 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.2.0") + .package(url: "https://github.com/apache/fory.git", from: "1.3.0") ], targets: [ .target( --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
