66[ ![ Slack Channel] ( https://img.shields.io/badge/slack-join-3f0e40?logo=slack&style=for-the-badge )] ( https://join.slack.com/t/fory-project/shared_invite/zt-36g0qouzm-kcQSvV_dtfbtBKHRwT5gsw )
77[ ![ X] ( https://img.shields.io/badge/@ApacheFory-follow-blue?logo=x&style=for-the-badge )] ( https://x.com/ApacheFory )
88[ ![ Maven Version] ( https://img.shields.io/maven-central/v/org.apache.fory/fory-core?style=for-the-badge )] ( https://search.maven.org/#search|gav|1|g:"org.apache.fory"%20AND%20a:"fory-core" )
9- [ ![ Crates.io] ( https://img.shields.io/badge/crates.io-v1.5 .0-blue?logo=rust&style=for-the-badge )] ( https://crates.io/crates/fory )
9+ [ ![ Crates.io] ( https://img.shields.io/badge/crates.io-v1.6 .0-blue?logo=rust&style=for-the-badge )] ( https://crates.io/crates/fory )
1010[ ![ PyPI] ( https://img.shields.io/pypi/v/pyfory.svg?logo=PyPI&style=for-the-badge )] ( https://pypi.org/project/pyfory/ )
1111[ ![ npm] ( https://img.shields.io/npm/v/%40apache-fory%2Fcore?logo=npm&style=for-the-badge )] ( https://www.npmjs.com/package/@apache-fory/core )
1212[ ![ NuGet] ( https://img.shields.io/nuget/v/Apache.Fory?logo=nuget&style=for-the-badge )] ( https://www.nuget.org/packages/Apache.Fory )
@@ -150,14 +150,14 @@ Maven:
150150<dependency >
151151 <groupId >org.apache.fory</groupId >
152152 <artifactId >fory-core</artifactId >
153- <version >1.5 .0</version >
153+ <version >1.6 .0</version >
154154</dependency >
155155```
156156
157157Gradle:
158158
159159``` gradle
160- implementation "org.apache.fory:fory-core:1.5 .0"
160+ implementation "org.apache.fory:fory-core:1.6 .0"
161161```
162162
163163On JDK25+, opening ` java.lang.invoke ` to Fory core is not required, but is recommended. It avoids the
@@ -179,15 +179,15 @@ Use the Fory core module name when Fory is on the module path:
179179sbt:
180180
181181``` scala
182- libraryDependencies += " org.apache.fory" %% " fory-scala" % " 1.5 .0"
182+ libraryDependencies += " org.apache.fory" %% " fory-scala" % " 1.6 .0"
183183```
184184
185185** Kotlin**
186186
187187Gradle:
188188
189189``` kotlin
190- implementation(" org.apache.fory:fory-kotlin:1.5 .0" )
190+ implementation(" org.apache.fory:fory-kotlin:1.6 .0" )
191191```
192192
193193Maven:
@@ -196,7 +196,7 @@ Maven:
196196<dependency >
197197 <groupId >org.apache.fory</groupId >
198198 <artifactId >fory-kotlin</artifactId >
199- <version >1.5 .0</version >
199+ <version >1.6 .0</version >
200200</dependency >
201201```
202202
@@ -218,7 +218,7 @@ pip install "pyfory[format]"
218218
219219``` toml
220220[dependencies ]
221- fory = " 1.5 .0"
221+ fory = " 1.6 .0"
222222```
223223
224224** C++**
@@ -230,7 +230,7 @@ include(FetchContent)
230230FetchContent_Declare(
231231 fory
232232 GIT_REPOSITORY https://github.com/apache/fory.git
233- GIT_TAG v1.5 .0
233+ GIT_TAG v1.6 .0
234234 SOURCE_SUBDIR cpp
235235)
236236FetchContent_MakeAvailable(fory)
@@ -241,8 +241,8 @@ Bazel:
241241
242242``` bazel
243243# MODULE.bazel
244- bazel_dep(name = " fory" , version = " 1.5 .0" )
245- git_override(module_name = " fory" , remote = " https://github.com/apache/fory.git" , commit = " v1.5 .0" )
244+ bazel_dep(name = " fory" , version = " 1.6 .0" )
245+ git_override(module_name = " fory" , remote = " https://github.com/apache/fory.git" , commit = " v1.6 .0" )
246246
247247# BUILD
248248deps = [" @fory//cpp/fory/serialization:fory_serialization" ]
@@ -275,13 +275,13 @@ npm install @apache-fory/core @apache-fory/hps
275275** C#**
276276
277277``` bash
278- dotnet add package Apache.Fory --version 1.5 .0
278+ dotnet add package Apache.Fory --version 1.6 .0
279279```
280280
281281** Dart**
282282
283283``` bash
284- dart pub add fory:^1.5 .0
284+ dart pub add fory:^1.6 .0
285285dart pub add dev:build_runner
286286```
287287
@@ -291,7 +291,7 @@ Add Fory to `Package.swift`:
291291
292292``` swift
293293dependencies: [
294- .package (url : " https://github.com/apache/fory.git" , exact : " 1.5 .0" )
294+ .package (url : " https://github.com/apache/fory.git" , exact : " 1.6 .0" )
295295],
296296targets: [
297297 .target (
@@ -841,14 +841,14 @@ Add Fory JSON to your project:
841841<dependency>
842842 <groupId>org.apache.fory</groupId>
843843 <artifactId>fory-json</artifactId>
844- <version>1.5 .0</version>
844+ <version>1.6 .0</version>
845845</dependency>
846846```
847847
848848**Gradle**
849849
850850```gradle
851- implementation "org.apache.fory:fory-json:1.5 .0"
851+ implementation "org.apache.fory:fory-json:1.6 .0"
852852```
853853
854854Keep all Fory modules in the same application on the same version.
0 commit comments