This is an automated email from the ASF dual-hosted git repository. chaokunyang pushed a commit to tag v1.0.0-rc1 in repository https://gitbox.apache.org/repos/asf/fory.git
commit 7c21d028de900af4790d2b1224edd7d5685e8e87 Author: chaokunyang <[email protected]> AuthorDate: Mon May 18 12:41:26 2026 +0800 bump version to 1.0.0 --- benchmarks/cpp/CMakeLists.txt | 2 +- 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 +- cpp/CMakeLists.txt | 2 +- csharp/Directory.Build.props | 2 +- csharp/README.md | 2 +- dart/packages/fory-test/pubspec.yaml | 4 ++-- dart/packages/fory/README.md | 2 +- dart/packages/fory/pubspec.yaml | 2 +- dart/pubspec.yaml | 4 ++-- docs/guide/csharp/index.md | 2 +- integration_tests/android_tests/README.md | 4 ++-- integration_tests/android_tests/build.gradle | 4 ++-- integration_tests/graalvm_tests/pom.xml | 2 +- integration_tests/idl_tests/cpp/CMakeLists.txt | 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-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-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/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 +- 44 files changed, 50 insertions(+), 50 deletions(-) diff --git a/benchmarks/cpp/CMakeLists.txt b/benchmarks/cpp/CMakeLists.txt index b1659c08b..4eff54de4 100644 --- a/benchmarks/cpp/CMakeLists.txt +++ b/benchmarks/cpp/CMakeLists.txt @@ -22,7 +22,7 @@ if(POLICY CMP0169) endif() project(fory_cpp_benchmark - VERSION 0.18.0 + VERSION 1.0.0 DESCRIPTION "C++ Benchmark comparing Fory, Protobuf, and Msgpack serialization" LANGUAGES CXX ) diff --git a/benchmarks/go/go.mod b/benchmarks/go/go.mod index 4a357acb2..e5f288236 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.18.0-alpha.0 + github.com/apache/fory/go/fory v1.0.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 a326e9b1f..eb99e38ef 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.18.0-SNAPSHOT</version> + <version>1.0.0</version> </parent> <artifactId>benchmark</artifactId> diff --git a/benchmarks/rust/Cargo.toml b/benchmarks/rust/Cargo.toml index f32c7dec6..099233209 100644 --- a/benchmarks/rust/Cargo.toml +++ b/benchmarks/rust/Cargo.toml @@ -17,7 +17,7 @@ [package] name = "fory-benchmarks" -version = "0.18.0-alpha.0" +version = "1.0.0" edition = "2021" [[bin]] diff --git a/compiler/fory_compiler/__init__.py b/compiler/fory_compiler/__init__.py index 8cb455740..3d3065a0b 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.18.0.dev0" +__version__ = "1.0.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 f3cb226d2..eeb8a42ed 100644 --- a/compiler/pyproject.toml +++ b/compiler/pyproject.toml @@ -21,7 +21,7 @@ build-backend = "setuptools.build_meta" [project] name = "fory-compiler" -version = "0.18.0.dev0" +version = "1.0.0" description = "FDL (Fory Definition Language) compiler for Apache Fory cross-language serialization" readme = "README.md" license = {text = "Apache-2.0"} diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index 43bb1d6e0..717793f15 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -18,7 +18,7 @@ cmake_minimum_required(VERSION 3.16) project(fory - VERSION 0.18.0 + VERSION 1.0.0 DESCRIPTION "Apache Fory - A blazingly fast multi-language serialization framework" LANGUAGES CXX ) diff --git a/csharp/Directory.Build.props b/csharp/Directory.Build.props index 6b235202b..4baf0c630 100644 --- a/csharp/Directory.Build.props +++ b/csharp/Directory.Build.props @@ -1,6 +1,6 @@ <Project> <PropertyGroup> - <Version>0.18.0-dev</Version> + <Version>1.0.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 db4fbd406..8b80b8f2b 100644 --- a/csharp/README.md +++ b/csharp/README.md @@ -31,7 +31,7 @@ From NuGet, reference the single `Apache.Fory` package. It includes the runtime ```xml <ItemGroup> - <PackageReference Include="Apache.Fory" Version="0.17.0" /> + <PackageReference Include="Apache.Fory" Version="1.0.0" /> </ItemGroup> ``` diff --git a/dart/packages/fory-test/pubspec.yaml b/dart/packages/fory-test/pubspec.yaml index fd6b89630..660a1e8fc 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.18.0-dev +version: 1.0.0 resolution: workspace @@ -25,7 +25,7 @@ environment: sdk: ^3.6.1 dependencies: - fory: 0.18.0-dev + fory: 1.0.0 dev_dependencies: build_runner: ^2.4.13 diff --git a/dart/packages/fory/README.md b/dart/packages/fory/README.md index 174261a98..8b7816be0 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: ^0.17.0 + fory: ^1.0.0 dev_dependencies: build_runner: ^2.4.13 diff --git a/dart/packages/fory/pubspec.yaml b/dart/packages/fory/pubspec.yaml index 801474c5e..a5793bbfc 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: 0.18.0-dev +version: 1.0.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 d8edf3f8e..1dfcc32e4 100644 --- a/dart/pubspec.yaml +++ b/dart/pubspec.yaml @@ -17,7 +17,7 @@ name: fory_dart description: apache fory dart support -version: 0.18.0-dev +version: 1.0.0 # repository: https://github.com/my_org/my_repo environment: @@ -25,7 +25,7 @@ environment: # Add regular dependencies here. dependencies: - fory: 0.18.0-dev + fory: 1.0.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 d2c18aa00..531b8958a 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.17.0" /> + <PackageReference Include="Apache.Fory" Version="1.0.0" /> </ItemGroup> ``` diff --git a/integration_tests/android_tests/README.md b/integration_tests/android_tests/README.md index 3e33f2c29..a42b3832c 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:0.18.0-SNAPSHOT` and -`org.apache.fory:fory-annotation-processor:0.18.0-SNAPSHOT` from the local Maven +The tests consume `org.apache.fory:fory-core:1.0.0` and +`org.apache.fory:fory-annotation-processor:1.0.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 df34878be..4dc93db73 100644 --- a/integration_tests/android_tests/build.gradle +++ b/integration_tests/android_tests/build.gradle @@ -58,11 +58,11 @@ android { } dependencies { - implementation('org.apache.fory:fory-core:0.18.0-SNAPSHOT') { + implementation('org.apache.fory:fory-core:1.0.0') { exclude group: 'com.google.guava', module: 'guava' exclude group: 'org.codehaus.janino', module: 'janino' } - annotationProcessor 'org.apache.fory:fory-annotation-processor:0.18.0-SNAPSHOT' + annotationProcessor 'org.apache.fory:fory-annotation-processor:1.0.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 ff65dcece..2ac6c8818 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.18.0-SNAPSHOT</version> + <version>1.0.0</version> <relativePath>../../java</relativePath> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/integration_tests/idl_tests/cpp/CMakeLists.txt b/integration_tests/idl_tests/cpp/CMakeLists.txt index fd2793f80..cc62c14fc 100644 --- a/integration_tests/idl_tests/cpp/CMakeLists.txt +++ b/integration_tests/idl_tests/cpp/CMakeLists.txt @@ -18,7 +18,7 @@ cmake_minimum_required(VERSION 3.16) project(fory_idl_tests - VERSION 0.18.0 + VERSION 1.0.0 DESCRIPTION "Fory IDL compiler integration tests" LANGUAGES CXX ) diff --git a/integration_tests/idl_tests/go/go.mod b/integration_tests/idl_tests/go/go.mod index d2fc7c79a..46b77ee13 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.18.0-alpha.0 +require github.com/apache/fory/go/fory v1.0.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 5b289c9e9..c773f9515 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.18.0-SNAPSHOT</version> + <version>1.0.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 68c93dc35..a78da3e96 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.18.0.dev0" +version = "1.0.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 d15105f2b..239d0827b 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.18.0-alpha.0" +version = "1.0.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 ae2f1b354..925af2799 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.18.0-SNAPSHOT</version> + <version>1.0.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 c985984b5..c169356af 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.18.0-SNAPSHOT</version> + <version>1.0.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 e14f499bc..9c1510117 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>0.18.0-SNAPSHOT</version> + <version>1.0.0</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/java/fory-core/pom.xml b/java/fory-core/pom.xml index 5231c1dcb..0474b5b73 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.18.0-SNAPSHOT</version> + <version>1.0.0</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/java/fory-extensions/pom.xml b/java/fory-extensions/pom.xml index 9ece1d60e..d8b3c08b3 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.18.0-SNAPSHOT</version> + <version>1.0.0</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/java/fory-format/pom.xml b/java/fory-format/pom.xml index fead56a65..dc5eab6e0 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.18.0-SNAPSHOT</version> + <version>1.0.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 f6b869c4c..186cb981f 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.18.0-SNAPSHOT</version> + <version>1.0.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 af70803df..89aa49524 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.18.0-SNAPSHOT</version> + <version>1.0.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 b7889eade..b06787dc5 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.18.0-SNAPSHOT</version> + <version>1.0.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 5769fc0d4..8b5e5d02f 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.18.0-SNAPSHOT</version> + <version>1.0.0</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/java/fory-testsuite/pom.xml b/java/fory-testsuite/pom.xml index 99f59f439..1192c5bd6 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.18.0-SNAPSHOT</version> + <version>1.0.0</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/java/pom.xml b/java/pom.xml index 3fabe04bc..6e6ef86dd 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.18.0-SNAPSHOT</version> + <version>1.0.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 e4639128e..6a9c5b0ba 100644 --- a/javascript/packages/core/package.json +++ b/javascript/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@apache-fory/core", - "version": "0.18.0-alpha.0", + "version": "1.0.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 f8acfa1d9..3cae80251 100644 --- a/javascript/packages/hps/package.json +++ b/javascript/packages/hps/package.json @@ -1,6 +1,6 @@ { "name": "@apache-fory/hps", - "version": "0.18.0-alpha.0", + "version": "1.0.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 b3eefef57..67d6a31b0 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>0.18.0-SNAPSHOT</version> + <version>1.0.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 f7b8bd7a0..1c75cf24a 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>0.18.0-SNAPSHOT</version> + <version>1.0.0</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/kotlin/fory-kotlin/pom.xml b/kotlin/fory-kotlin/pom.xml index 090156a28..a9a2e06a6 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>0.18.0-SNAPSHOT</version> + <version>1.0.0</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/kotlin/pom.xml b/kotlin/pom.xml index 016559be7..ff787a708 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>0.18.0-SNAPSHOT</version> + <version>1.0.0</version> <packaging>pom</packaging> <modules> diff --git a/python/pyfory/__init__.py b/python/pyfory/__init__.py index 5f420af08..306f73cbb 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__ = "0.18.0.dev0" +__version__ = "1.0.0" __all__ = [ # Core classes diff --git a/rust/Cargo.toml b/rust/Cargo.toml index d7b3fd3b6..09e0696da 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -30,7 +30,7 @@ exclude = [ resolver = "2" [workspace.package] -version = "0.18.0-alpha.0" +version = "1.0.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.18.0-alpha.0" } -fory-derive = { path = "fory-derive", version = "0.18.0-alpha.0" } +fory-core = { path = "fory-core", version = "1.0.0" } +fory-derive = { path = "fory-derive", version = "1.0.0" } diff --git a/scala/build.sbt b/scala/build.sbt index ebc18659a..97d9c92ce 100644 --- a/scala/build.sbt +++ b/scala/build.sbt @@ -16,7 +16,7 @@ * limitations under the License. */ -val foryVersion = "0.18.0-SNAPSHOT" +val foryVersion = "1.0.0" val scala213Version = "2.13.15" ThisBuild / apacheSonatypeProjectProfile := "fory" version := foryVersion diff --git a/swift/README.md b/swift/README.md index 630143ae1..0abbc6204 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.17.0") + .package(url: "https://github.com/apache/fory.git", from: "1.0.0") ], targets: [ .target( --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
