Skip to content

Commit f3c36c0

Browse files
committed
bump release version to 1.6.0
1 parent aaf50d8 commit f3c36c0

86 files changed

Lines changed: 142 additions & 142 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
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

157157
Gradle:
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

163163
On 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:
179179
sbt:
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

187187
Gradle:
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

193193
Maven:
@@ -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)
230230
FetchContent_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
)
236236
FetchContent_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
248248
deps = ["@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
285285
dart pub add dev:build_runner
286286
```
287287

@@ -291,7 +291,7 @@ Add Fory to `Package.swift`:
291291

292292
```swift
293293
dependencies: [
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
],
296296
targets: [
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
854854
Keep all Fory modules in the same application on the same version.

benchmarks/go/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ module github.com/apache/fory/benchmarks/go
2020
go 1.25.0
2121

2222
require (
23-
github.com/apache/fory/go/fory v1.6.0-alpha.0
23+
github.com/apache/fory/go/fory v1.6.0
2424
github.com/vmihailenco/msgpack/v5 v5.4.1
2525
google.golang.org/protobuf v1.36.0
2626
)

benchmarks/java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<parent>
2727
<artifactId>fory-parent</artifactId>
2828
<groupId>org.apache.fory</groupId>
29-
<version>1.6.0-SNAPSHOT</version>
29+
<version>1.6.0</version>
3030
</parent>
3131

3232
<artifactId>benchmark</artifactId>

benchmarks/java25/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
<groupId>org.apache.fory.benchmark</groupId>
2828
<artifactId>java25-memory-access-benchmark</artifactId>
29-
<version>1.6.0-SNAPSHOT</version>
29+
<version>1.6.0</version>
3030
<packaging>jar</packaging>
3131

3232
<properties>

benchmarks/rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ members = ["local", "xlang"]
2020
resolver = "2"
2121

2222
[workspace.package]
23-
version = "1.6.0-alpha.0"
23+
version = "1.6.0"
2424
edition = "2021"

compiler/fory_compiler/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
"""Fory IDL compiler for Apache Fory."""
1919

20-
__version__ = "1.6.0.dev0"
20+
__version__ = "1.6.0"
2121

2222
from fory_compiler.frontend.fbs import FBSFrontend
2323
from fory_compiler.frontend.fdl import FDLFrontend

compiler/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ build-backend = "setuptools.build_meta"
2424

2525
[project]
2626
name = "fory-compiler"
27-
version = "1.6.0.dev0"
27+
version = "1.6.0"
2828
description = "FDL (Fory Definition Language) compiler for Apache Fory cross-language serialization"
2929
readme = "README.md"
3030
license = {text = "Apache-2.0"}

csharp/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<Version>1.6.0-dev</Version>
3+
<Version>1.6.0</Version>
44
<Authors>Apache Software Foundation</Authors>
55
<Company>Apache Software Foundation</Company>
66
<Description>Apache Fory for .NET provides high-performance cross-language serialization with source-generated serializers and schema evolution support.</Description>

csharp/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ From NuGet, reference the single `Apache.Fory` package. It includes the Fory lib
3232

3333
```xml
3434
<ItemGroup>
35-
<PackageReference Include="Apache.Fory" Version="1.5.0" />
35+
<PackageReference Include="Apache.Fory" Version="1.6.0" />
3636
</ItemGroup>
3737
```
3838

dart/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
## 1.6.0-dev
1+
## 1.6.0
22

3-
- Start the next Dart workspace development cycle after the 1.5.0 release.
3+
- Align the Dart workspace version with the Apache Fory 1.6.0 release.
44

55
## 1.5.0
66

0 commit comments

Comments
 (0)