This is an automated email from the ASF dual-hosted git repository. chaokunyang pushed a commit to branch release_0.14.1 in repository https://gitbox.apache.org/repos/asf/fory-site.git
commit 649e57b4475e5e03ae05ac3f55471bc77fb63049 Author: chaokunyang <[email protected]> AuthorDate: Mon Jan 5 15:28:35 2026 +0800 release v0.14.1 --- blog/2025-12-26-fory_0_14_1_release.md | 27 ++++++++++++++++++++++ docs/docs/start/install.md | 16 ++++++------- .../current/docs/start/install.md | 16 ++++++------- .../version-0.14/docs/guide/cpp/index.md | 8 +++---- .../version-0.14/docs/guide/java/compression.md | 2 +- .../version-0.14/docs/guide/kotlin/index.md | 4 ++-- .../version-0.14/docs/guide/scala/index.md | 2 +- .../docs/guide/xlang/getting-started.md | 4 ++-- .../version-0.14/docs/start/install.md | 16 ++++++------- src/pages/download/index.md | 10 ++++---- .../version-0.14/docs/guide/cpp/index.md | 8 +++---- .../version-0.14/docs/guide/java/compression.md | 2 +- .../version-0.14/docs/guide/kotlin/index.md | 4 ++-- .../version-0.14/docs/guide/scala/index.md | 2 +- .../docs/guide/xlang/getting-started.md | 4 ++-- versioned_docs/version-0.14/docs/start/install.md | 16 ++++++------- 16 files changed, 84 insertions(+), 57 deletions(-) diff --git a/blog/2025-12-26-fory_0_14_1_release.md b/blog/2025-12-26-fory_0_14_1_release.md new file mode 100644 index 000000000..e0fad160b --- /dev/null +++ b/blog/2025-12-26-fory_0_14_1_release.md @@ -0,0 +1,27 @@ +--- +slug: fory_0_14_1_release +title: Fory v0.14.1 Released +authors: [chaokunyang] +tags: [fory, rust] +--- + +The Apache Fory team is pleased to announce the 0.14.1 release. This is a release that includes [6 PR](https://github.com/apache/fory/compare/v0.14.0...v0.14.1) from 5 distinct contributors. See the [Install](https://fury.apache.org/docs/docs/start/install) Page to learn how to get the libraries for your platform. + +## Highlights + +- feat(rust): add generate_default attr, no longer generate Default by default by @ariesdevil in https://github.com/apache/fory/pull/3074 + +## Features + +- feat(rust): add generate_default attr, no longer generate Default by default by @ariesdevil in https://github.com/apache/fory/pull/3074 +- feat(java): mark createSerializer as public by @chaokunyang + +## Bug Fix + +- fix(java): Fix CopyOnWriteArrayList field serialization by @vybhavjs in https://github.com/apache/fory/pull/3079 +- fix(java): Better ergonomics for AllowListChecker by @Asuka-star in https://github.com/apache/fory/pull/3061 +- fix(java): fix read class def when writing classdefs by @chaokunyang in https://github.com/apache/fory/commit/3ad627c9 +- fix(Rust): Move the calculating of TypeMeta::bytes and TypeMeta::hash ahead of serialization by @urlyy in https://github.com/apache/fory/pull/3060 +- fix(Rust): prevent obtaining generic type metadata on custom types(struct/enum) by @urlyy in https://github.com/apache/fory/pull/3057 + +**Full Changelog**: https://github.com/apache/fory/compare/v0.14.0...v0.14.1 diff --git a/docs/docs/start/install.md b/docs/docs/start/install.md index 9f74b77c4..d2bc8def4 100644 --- a/docs/docs/start/install.md +++ b/docs/docs/start/install.md @@ -16,7 +16,7 @@ To add a dependency on Apache Fory™ using Maven, use the following: <dependency> <groupId>org.apache.fory</groupId> <artifactId>fory-core</artifactId> - <version>0.14.0</version> + <version>0.14.1</version> </dependency> <!-- Optional row format support --> <!-- @@ -44,7 +44,7 @@ To add a dependency on Apache Fory™ scala for scala 2.13 with maven, use the f <dependency> <groupId>org.apache.fory</groupId> <artifactId>fory-scala_2.13</artifactId> - <version>0.14.0</version> + <version>0.14.1</version> </dependency> ``` @@ -54,20 +54,20 @@ To add a dependency on Apache Fory™ scala for scala 3 with maven, use the foll <dependency> <groupId>org.apache.fory</groupId> <artifactId>fory-scala_3</artifactId> - <version>0.14.0</version> + <version>0.14.1</version> </dependency> ``` To add a dependency on Apache Fory™ scala for scala 2.13 with sbt, use the following: ```sbt -libraryDependencies += "org.apache.fory" % "fory-scala_2.13" % "0.14.0" +libraryDependencies += "org.apache.fory" % "fory-scala_2.13" % "0.14.1" ``` To add a dependency on Apache Fory™ scala for scala 3 with sbt, use the following: ```sbt -libraryDependencies += "org.apache.fory" % "fory-scala_3" % "0.14.0" +libraryDependencies += "org.apache.fory" % "fory-scala_3" % "0.14.1" ``` ## Kotlin @@ -78,7 +78,7 @@ To add a dependency on Apache Fory™ kotlin with maven, use the following: <dependency> <groupId>org.apache.fory</groupId> <artifactId>fory-kotlin</artifactId> - <version>0.14.0</version> + <version>0.14.1</version> </dependency> ``` @@ -86,7 +86,7 @@ To add a dependency on Apache Fory™ kotlin with maven, use the following: ```bash python -m pip install --upgrade pip -pip install pyfory==0.14.0 +pip install pyfory==0.14.1 ``` ## Rust @@ -99,7 +99,7 @@ fory = "0.14" or just execute command: ```bash -cargo add [email protected] +cargo add [email protected] ``` ## JavaScript diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/docs/start/install.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/docs/start/install.md index 79356fa79..9b6077dc6 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/docs/start/install.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/docs/start/install.md @@ -14,7 +14,7 @@ Apache Fory™ 源码下载请参见 Apache Fory™ [download](https://github.co <dependency> <groupId>org.apache.fory</groupId> <artifactId>fory-core</artifactId> - <version>0.14.0</version> + <version>0.14.1</version> </dependency> <!-- Optional row format support --> <!-- @@ -42,7 +42,7 @@ Apache Fory™ 源码下载请参见 Apache Fory™ [download](https://github.co <dependency> <groupId>org.apache.fory</groupId> <artifactId>fory-scala_2.13</artifactId> - <version>0.14.0</version> + <version>0.14.1</version> </dependency> ``` @@ -52,20 +52,20 @@ Apache Fory™ 源码下载请参见 Apache Fory™ [download](https://github.co <dependency> <groupId>org.apache.fory</groupId> <artifactId>fory-scala_3</artifactId> - <version>0.14.0</version> + <version>0.14.1</version> </dependency> ``` 要使用 sbt 添加 scala 2.13 的 Fory scala 依赖,请使用以下配置: ```sbt -libraryDependencies += "org.apache.fory" % "fory-scala_2.13" % "0.14.0" +libraryDependencies += "org.apache.fory" % "fory-scala_2.13" % "0.14.1" ``` 要使用 sbt 添加 scala 3 的 Fory scala 依赖,请使用以下配置: ```sbt -libraryDependencies += "org.apache.fory" % "fory-scala_3" % "0.14.0" +libraryDependencies += "org.apache.fory" % "fory-scala_3" % "0.14.1" ``` ## 安装 Apache Fory™ Kotlin @@ -76,7 +76,7 @@ To add a dependency on Apache Fory™kotlin with maven, use the following: <dependency> <groupId>org.apache.fory</groupId> <artifactId>fory-kotlin</artifactId> - <version>0.14.0</version> + <version>0.14.1</version> </dependency> ``` @@ -84,7 +84,7 @@ To add a dependency on Apache Fory™kotlin with maven, use the following: ```bash python -m pip install --upgrade pip -pip install pyfory==0.14.0 +pip install pyfory==0.14.1 ``` ## 安装 Apache Fory™ Rust @@ -97,5 +97,5 @@ fory = "0.14" 或者直接执行以下命令: ```bash -cargo add [email protected] +cargo add [email protected] ``` diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.14/docs/guide/cpp/index.md b/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.14/docs/guide/cpp/index.md index 61db78056..530b7b1de 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.14/docs/guide/cpp/index.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.14/docs/guide/cpp/index.md @@ -57,7 +57,7 @@ include(FetchContent) FetchContent_Declare( fory GIT_REPOSITORY https://github.com/apache/fory.git - GIT_TAG v0.14.0 + GIT_TAG v0.14.1 SOURCE_SUBDIR cpp ) FetchContent_MakeAvailable(fory) @@ -87,11 +87,11 @@ module( bazel_dep(name = "rules_cc", version = "0.1.1") -bazel_dep(name = "fory", version = "0.14.0") +bazel_dep(name = "fory", version = "0.14.1") git_override( module_name = "fory", remote = "https://github.com/apache/fory.git", - commit = "v0.14.0", # 或使用特定的 commit hash 以确保可重现性 + commit = "v0.14.1", # 或使用特定的 commit hash 以确保可重现性 ) ``` @@ -115,7 +115,7 @@ bazel run //:my_app 对于本地开发,可以使用 `local_path_override`: ```bazel -bazel_dep(name = "fory", version = "0.14.0") +bazel_dep(name = "fory", version = "0.14.1") local_path_override( module_name = "fory", path = "/path/to/fory", diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.14/docs/guide/java/compression.md b/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.14/docs/guide/java/compression.md index 6cd40685b..ff7a54117 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.14/docs/guide/java/compression.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.14/docs/guide/java/compression.md @@ -84,7 +84,7 @@ CompressedArraySerializers.registerSerializers(fory); <dependency> <groupId>org.apache.fory</groupId> <artifactId>fory-simd</artifactId> - <version>0.14.0</version> + <version>0.14.1</version> </dependency> ``` diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.14/docs/guide/kotlin/index.md b/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.14/docs/guide/kotlin/index.md index a926c1e6e..73b96000c 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.14/docs/guide/kotlin/index.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.14/docs/guide/kotlin/index.md @@ -50,14 +50,14 @@ Fory Kotlin 继承了 Fory Java 的所有特性,并增加了 Kotlin 特定的 <dependency> <groupId>org.apache.fory</groupId> <artifactId>fory-kotlin</artifactId> - <version>0.14.0</version> + <version>0.14.1</version> </dependency> ``` ### Gradle ```kotlin -implementation("org.apache.fory:fory-kotlin:0.14.0") +implementation("org.apache.fory:fory-kotlin:0.14.1") ``` ## 快速开始 diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.14/docs/guide/scala/index.md b/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.14/docs/guide/scala/index.md index 7c934a221..c3ec639fe 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.14/docs/guide/scala/index.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.14/docs/guide/scala/index.md @@ -48,7 +48,7 @@ Fory Scala 继承了 Fory Java 的所有特性,并增加了 Scala 特定的优 使用 sbt 添加依赖: ```sbt -libraryDependencies += "org.apache.fory" %% "fory-scala" % "0.14.0" +libraryDependencies += "org.apache.fory" %% "fory-scala" % "0.14.1" ``` ## 快速开始 diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.14/docs/guide/xlang/getting-started.md b/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.14/docs/guide/xlang/getting-started.md index 2efe0dc5b..3a708f1d2 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.14/docs/guide/xlang/getting-started.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.14/docs/guide/xlang/getting-started.md @@ -31,14 +31,14 @@ license: | <dependency> <groupId>org.apache.fory</groupId> <artifactId>fory-core</artifactId> - <version>0.14.0</version> + <version>0.14.1</version> </dependency> ``` **Gradle:** ```gradle -implementation 'org.apache.fory:fory-core:0.14.0' +implementation 'org.apache.fory:fory-core:0.14.1' ``` ### Python diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.14/docs/start/install.md b/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.14/docs/start/install.md index 79356fa79..9b6077dc6 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.14/docs/start/install.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/version-0.14/docs/start/install.md @@ -14,7 +14,7 @@ Apache Fory™ 源码下载请参见 Apache Fory™ [download](https://github.co <dependency> <groupId>org.apache.fory</groupId> <artifactId>fory-core</artifactId> - <version>0.14.0</version> + <version>0.14.1</version> </dependency> <!-- Optional row format support --> <!-- @@ -42,7 +42,7 @@ Apache Fory™ 源码下载请参见 Apache Fory™ [download](https://github.co <dependency> <groupId>org.apache.fory</groupId> <artifactId>fory-scala_2.13</artifactId> - <version>0.14.0</version> + <version>0.14.1</version> </dependency> ``` @@ -52,20 +52,20 @@ Apache Fory™ 源码下载请参见 Apache Fory™ [download](https://github.co <dependency> <groupId>org.apache.fory</groupId> <artifactId>fory-scala_3</artifactId> - <version>0.14.0</version> + <version>0.14.1</version> </dependency> ``` 要使用 sbt 添加 scala 2.13 的 Fory scala 依赖,请使用以下配置: ```sbt -libraryDependencies += "org.apache.fory" % "fory-scala_2.13" % "0.14.0" +libraryDependencies += "org.apache.fory" % "fory-scala_2.13" % "0.14.1" ``` 要使用 sbt 添加 scala 3 的 Fory scala 依赖,请使用以下配置: ```sbt -libraryDependencies += "org.apache.fory" % "fory-scala_3" % "0.14.0" +libraryDependencies += "org.apache.fory" % "fory-scala_3" % "0.14.1" ``` ## 安装 Apache Fory™ Kotlin @@ -76,7 +76,7 @@ To add a dependency on Apache Fory™kotlin with maven, use the following: <dependency> <groupId>org.apache.fory</groupId> <artifactId>fory-kotlin</artifactId> - <version>0.14.0</version> + <version>0.14.1</version> </dependency> ``` @@ -84,7 +84,7 @@ To add a dependency on Apache Fory™kotlin with maven, use the following: ```bash python -m pip install --upgrade pip -pip install pyfory==0.14.0 +pip install pyfory==0.14.1 ``` ## 安装 Apache Fory™ Rust @@ -97,5 +97,5 @@ fory = "0.14" 或者直接执行以下命令: ```bash -cargo add [email protected] +cargo add [email protected] ``` diff --git a/src/pages/download/index.md b/src/pages/download/index.md index e840f475e..626a61479 100644 --- a/src/pages/download/index.md +++ b/src/pages/download/index.md @@ -9,11 +9,11 @@ For binary install, please see Apache Fory™ [install](/docs/docs/start/install ## The latest release -The latest source release is 0.14.0: +The latest source release is 0.14.1: | Version | Date | Source | Release Notes | | ------- | ---------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------- | -| 0.14.0 | 2025-12-05 | [source](https://www.apache.org/dyn/closer.lua/fory/0.14.0/apache-fory-0.14.0-src.tar.gz?action=download) [asc](https://downloads.apache.org/fory/0.14.0/apache-fory-0.14.0-src.tar.gz.asc) [sha512](https://downloads.apache.org/fory/0.14.0/apache-fory-0.14.0-src.tar.gz.sha512) | [release notes](https://github.com/apache/fory/releases/tag/v0.14.0) | +| 0.14.1 | 2025-12-05 | [source](https://www.apache.org/dyn/closer.lua/fory/0.14.1/apache-fory-0.14.1-src.tar.gz?action=download) [asc](https://downloads.apache.org/fory/0.14.1/apache-fory-0.14.1-src.tar.gz.asc) [sha512](https://downloads.apache.org/fory/0.14.1/apache-fory-0.14.1-src.tar.gz.sha512) | [release notes](https://github.com/apache/fory/releases/tag/v0.14.1) | ## All archived releases @@ -31,13 +31,13 @@ These files are named after the files they relate to but have `.sha512/.asc` ext To verify the SHA digests, you need the `.tgz` and its associated `.tgz.sha512` file. An example command: ```bash -sha512sum --check apache-fory-0.14.0-src.tar.gz +sha512sum --check apache-fory-0.14.1-src.tar.gz ``` It should output something like: ```bash -apache-fory-0.14.0-src.tar.gz: OK +apache-fory-0.14.1-src.tar.gz: OK ``` ### Verifying Signatures @@ -54,7 +54,7 @@ gpg --import KEYS Then you can verify signature: ```bash -gpg --verify apache-fory-0.14.0-src.tar.gz.asc apache-fory-0.14.0-src.tar.gz +gpg --verify apache-fory-0.14.1-src.tar.gz.asc apache-fory-0.14.1-src.tar.gz ``` If something like the following appears, it means the signature is correct: diff --git a/versioned_docs/version-0.14/docs/guide/cpp/index.md b/versioned_docs/version-0.14/docs/guide/cpp/index.md index e31b99244..664a1e89b 100644 --- a/versioned_docs/version-0.14/docs/guide/cpp/index.md +++ b/versioned_docs/version-0.14/docs/guide/cpp/index.md @@ -57,7 +57,7 @@ include(FetchContent) FetchContent_Declare( fory GIT_REPOSITORY https://github.com/apache/fory.git - GIT_TAG v0.14.0 + GIT_TAG v0.14.1 SOURCE_SUBDIR cpp ) FetchContent_MakeAvailable(fory) @@ -87,11 +87,11 @@ module( bazel_dep(name = "rules_cc", version = "0.1.1") -bazel_dep(name = "fory", version = "0.14.0") +bazel_dep(name = "fory", version = "0.14.1") git_override( module_name = "fory", remote = "https://github.com/apache/fory.git", - commit = "v0.14.0", # Or use a specific commit hash for reproducibility + commit = "v0.14.1", # Or use a specific commit hash for reproducibility ) ``` @@ -115,7 +115,7 @@ bazel run //:my_app For local development, you can use `local_path_override` instead: ```bazel -bazel_dep(name = "fory", version = "0.14.0") +bazel_dep(name = "fory", version = "0.14.1") local_path_override( module_name = "fory", path = "/path/to/fory", diff --git a/versioned_docs/version-0.14/docs/guide/java/compression.md b/versioned_docs/version-0.14/docs/guide/java/compression.md index 852c69d0c..b43f36eda 100644 --- a/versioned_docs/version-0.14/docs/guide/java/compression.md +++ b/versioned_docs/version-0.14/docs/guide/java/compression.md @@ -84,7 +84,7 @@ CompressedArraySerializers.registerSerializers(fory); <dependency> <groupId>org.apache.fory</groupId> <artifactId>fory-simd</artifactId> - <version>0.14.0</version> + <version>0.14.1</version> </dependency> ``` diff --git a/versioned_docs/version-0.14/docs/guide/kotlin/index.md b/versioned_docs/version-0.14/docs/guide/kotlin/index.md index 5d0b26d4e..9c3f91312 100644 --- a/versioned_docs/version-0.14/docs/guide/kotlin/index.md +++ b/versioned_docs/version-0.14/docs/guide/kotlin/index.md @@ -50,14 +50,14 @@ See [Java Features](../java/index.md#features) for complete feature list. <dependency> <groupId>org.apache.fory</groupId> <artifactId>fory-kotlin</artifactId> - <version>0.14.0</version> + <version>0.14.1</version> </dependency> ``` ### Gradle ```kotlin -implementation("org.apache.fory:fory-kotlin:0.14.0") +implementation("org.apache.fory:fory-kotlin:0.14.1") ``` ## Quick Start diff --git a/versioned_docs/version-0.14/docs/guide/scala/index.md b/versioned_docs/version-0.14/docs/guide/scala/index.md index b81a9a4a4..000318698 100644 --- a/versioned_docs/version-0.14/docs/guide/scala/index.md +++ b/versioned_docs/version-0.14/docs/guide/scala/index.md @@ -48,7 +48,7 @@ See [Java Features](../java/index.md#features) for complete feature list. Add the dependency with sbt: ```sbt -libraryDependencies += "org.apache.fory" %% "fory-scala" % "0.14.0" +libraryDependencies += "org.apache.fory" %% "fory-scala" % "0.14.1" ``` ## Quick Start diff --git a/versioned_docs/version-0.14/docs/guide/xlang/getting-started.md b/versioned_docs/version-0.14/docs/guide/xlang/getting-started.md index a7f8cccef..9aaa5ee8d 100644 --- a/versioned_docs/version-0.14/docs/guide/xlang/getting-started.md +++ b/versioned_docs/version-0.14/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>0.14.0</version> + <version>0.14.1</version> </dependency> ``` **Gradle:** ```gradle -implementation 'org.apache.fory:fory-core:0.14.0' +implementation 'org.apache.fory:fory-core:0.14.1' ``` ### Python diff --git a/versioned_docs/version-0.14/docs/start/install.md b/versioned_docs/version-0.14/docs/start/install.md index 9f74b77c4..d2bc8def4 100644 --- a/versioned_docs/version-0.14/docs/start/install.md +++ b/versioned_docs/version-0.14/docs/start/install.md @@ -16,7 +16,7 @@ To add a dependency on Apache Fory™ using Maven, use the following: <dependency> <groupId>org.apache.fory</groupId> <artifactId>fory-core</artifactId> - <version>0.14.0</version> + <version>0.14.1</version> </dependency> <!-- Optional row format support --> <!-- @@ -44,7 +44,7 @@ To add a dependency on Apache Fory™ scala for scala 2.13 with maven, use the f <dependency> <groupId>org.apache.fory</groupId> <artifactId>fory-scala_2.13</artifactId> - <version>0.14.0</version> + <version>0.14.1</version> </dependency> ``` @@ -54,20 +54,20 @@ To add a dependency on Apache Fory™ scala for scala 3 with maven, use the foll <dependency> <groupId>org.apache.fory</groupId> <artifactId>fory-scala_3</artifactId> - <version>0.14.0</version> + <version>0.14.1</version> </dependency> ``` To add a dependency on Apache Fory™ scala for scala 2.13 with sbt, use the following: ```sbt -libraryDependencies += "org.apache.fory" % "fory-scala_2.13" % "0.14.0" +libraryDependencies += "org.apache.fory" % "fory-scala_2.13" % "0.14.1" ``` To add a dependency on Apache Fory™ scala for scala 3 with sbt, use the following: ```sbt -libraryDependencies += "org.apache.fory" % "fory-scala_3" % "0.14.0" +libraryDependencies += "org.apache.fory" % "fory-scala_3" % "0.14.1" ``` ## Kotlin @@ -78,7 +78,7 @@ To add a dependency on Apache Fory™ kotlin with maven, use the following: <dependency> <groupId>org.apache.fory</groupId> <artifactId>fory-kotlin</artifactId> - <version>0.14.0</version> + <version>0.14.1</version> </dependency> ``` @@ -86,7 +86,7 @@ To add a dependency on Apache Fory™ kotlin with maven, use the following: ```bash python -m pip install --upgrade pip -pip install pyfory==0.14.0 +pip install pyfory==0.14.1 ``` ## Rust @@ -99,7 +99,7 @@ fory = "0.14" or just execute command: ```bash -cargo add [email protected] +cargo add [email protected] ``` ## JavaScript --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
