Skip to content

Commit 85274e6

Browse files
committed
bump version to 0.15.0
1 parent b5ddbed commit 85274e6

File tree

30 files changed

+34
-34
lines changed

30 files changed

+34
-34
lines changed

benchmarks/go_benchmark/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_benchmark
2020
go 1.24.0
2121

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

benchmarks/java_benchmark/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.15.0-SNAPSHOT</version>
29+
<version>0.15.0</version>
3030
</parent>
3131

3232
<artifactId>benchmark</artifactId>

benchmarks/rust_benchmark/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.15.0-alpha.0"
20+
version = "0.15.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.15.0.dev0"
20+
__version__ = "0.15.0"
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.15.0.dev0"
24+
version = "0.15.0"
2525
description = "FDL (Fory Definition Language) compiler for Apache Fory cross-language serialization"
2626
readme = "README.md"
2727
license = {text = "Apache-2.0"}

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: test for fory dart
20-
version: 0.15.0-dev
20+
version: 0.15.0
2121

2222
environment:
2323
sdk: ^3.6.1
2424

2525
resolution: workspace
2626

2727
dependencies:
28-
fory: 0.15.0-dev
28+
fory: 0.15.0
2929
checks: ^0.3.0
3030
path: ^1.9.1
3131
yaml: ^3.1.3

dart/packages/fory/pubspec.yaml

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

1818
name: fory
1919
description: apache fory dart support
20-
version: 0.15.0-dev
20+
version: 0.15.0
2121

2222
resolution: workspace
2323

dart/pubspec.yaml

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

1818
name: fory_dart
1919
description: apache fory dart support
20-
version: 0.15.0-dev
20+
version: 0.15.0
2121
# repository: https://github.com/my_org/my_repo
2222

2323
environment:
2424
sdk: ^3.6.1
2525

2626
# Add regular dependencies here.
2727
dependencies:
28-
fory: 0.15.0-dev
28+
fory: 0.15.0
2929
build_runner: ^2.4.13
3030
dev_dependencies:
3131
lints: ^5.0.0

integration_tests/graalvm_tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<parent>
2626
<groupId>org.apache.fory</groupId>
2727
<artifactId>fory-parent</artifactId>
28-
<version>0.15.0-SNAPSHOT</version>
28+
<version>0.15.0</version>
2929
<relativePath>../../java</relativePath>
3030
</parent>
3131
<modelVersion>4.0.0</modelVersion>

integration_tests/idl_tests/go/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ module github.com/apache/fory/integration_tests/idl_tests/go
1919

2020
go 1.24.0
2121

22-
require github.com/apache/fory/go/fory v0.15.0-alpha.0
22+
require github.com/apache/fory/go/fory v0.15.0
2323

2424
require github.com/spaolacci/murmur3 v1.1.0 // indirect
2525

0 commit comments

Comments
 (0)