Skip to content

Commit c515d6b

Browse files
committed
bump release version to 0.17.0
1 parent 3206914 commit c515d6b

35 files changed

Lines changed: 39 additions & 39 deletions

File tree

benchmarks/cpp/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ if(POLICY CMP0169)
2222
endif()
2323

2424
project(fory_cpp_benchmark
25-
VERSION 0.17.0
25+
VERSION 0.18.0
2626
DESCRIPTION "C++ Benchmark comparing Fory, Protobuf, and Msgpack serialization"
2727
LANGUAGES CXX
2828
)

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.24.0
2121

2222
require (
23-
github.com/apache/fory/go/fory v0.17.0-alpha.0
23+
github.com/apache/fory/go/fory v0.18.0-alpha.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>0.17.0-SNAPSHOT</version>
29+
<version>0.18.0-SNAPSHOT</version>
3030
</parent>
3131

3232
<artifactId>benchmark</artifactId>

benchmarks/rust/Cargo.toml

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

1818
[package]
1919
name = "fory-benchmarks"
20-
version = "0.17.0-alpha.0"
20+
version = "0.18.0-alpha.0"
2121
edition = "2021"
2222

2323
[[bin]]

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__ = "0.17.0.dev0"
20+
__version__ = "0.18.0.dev0"
2121

2222
from fory_compiler.ir.ast import Schema, Message, Enum, Field, EnumValue, Import
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
@@ -21,7 +21,7 @@ build-backend = "setuptools.build_meta"
2121

2222
[project]
2323
name = "fory-compiler"
24-
version = "0.17.0.dev0"
24+
version = "0.18.0.dev0"
2525
description = "FDL (Fory Definition Language) compiler for Apache Fory cross-language serialization"
2626
readme = "README.md"
2727
license = {text = "Apache-2.0"}

cpp/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
cmake_minimum_required(VERSION 3.16)
1919

2020
project(fory
21-
VERSION 0.17.0
21+
VERSION 0.18.0
2222
DESCRIPTION "Apache Fory - A blazingly fast multi-language serialization framework"
2323
LANGUAGES CXX
2424
)

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>0.17.0</Version>
3+
<Version>0.18.0-dev</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
@@ -29,7 +29,7 @@ From NuGet, reference the single `Apache.Fory` package. It includes the runtime
2929

3030
```xml
3131
<ItemGroup>
32-
<PackageReference Include="Apache.Fory" Version="0.17.0" />
32+
<PackageReference Include="Apache.Fory" Version="0.18.0-dev" />
3333
</ItemGroup>
3434
```
3535

dart/packages/fory-test/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@
1717

1818
name: fory_test
1919
description: Apache Fory Dart consumer and integration tests
20-
version: 0.17.0-dev
20+
version: 0.18.0-dev
2121

2222
resolution: workspace
2323

2424
environment:
2525
sdk: ^3.6.1
2626

2727
dependencies:
28-
fory: 0.17.0-dev
28+
fory: 0.18.0-dev
2929

3030
dev_dependencies:
3131
build_runner: ^2.4.13

0 commit comments

Comments
 (0)