Skip to content

Commit 3206914

Browse files
committed
bump version to 0.17.0
1 parent 3e94a45 commit 3206914

14 files changed

Lines changed: 27 additions & 27 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -157,20 +157,20 @@ For more detailed benchmarks and methodology, see [Dart Benchmarks](docs/benchma
157157
<dependency>
158158
<groupId>org.apache.fory</groupId>
159159
<artifactId>fory-core</artifactId>
160-
<version>0.16.0</version>
160+
<version>0.17.0</version>
161161
</dependency>
162162
```
163163

164-
Snapshots are available from `https://repository.apache.org/snapshots/` (version `0.16.0-SNAPSHOT`).
164+
Snapshots are available from `https://repository.apache.org/snapshots/` (version `0.17.0-SNAPSHOT`).
165165

166166
**Scala**:
167167

168168
```sbt
169169
// Scala 2.13
170-
libraryDependencies += "org.apache.fory" % "fory-scala_2.13" % "0.16.0"
170+
libraryDependencies += "org.apache.fory" % "fory-scala_2.13" % "0.17.0"
171171

172172
// Scala 3
173-
libraryDependencies += "org.apache.fory" % "fory-scala_3" % "0.16.0"
173+
libraryDependencies += "org.apache.fory" % "fory-scala_3" % "0.17.0"
174174
```
175175

176176
**Kotlin**:
@@ -179,7 +179,7 @@ libraryDependencies += "org.apache.fory" % "fory-scala_3" % "0.16.0"
179179
<dependency>
180180
<groupId>org.apache.fory</groupId>
181181
<artifactId>fory-kotlin</artifactId>
182-
<version>0.16.0</version>
182+
<version>0.17.0</version>
183183
</dependency>
184184
```
185185

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.16.0</Version>
3+
<Version>0.17.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
@@ -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.16.0" />
32+
<PackageReference Include="Apache.Fory" Version="0.17.0" />
3333
</ItemGroup>
3434
```
3535

docs/guide/cpp/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ include(FetchContent)
5959
FetchContent_Declare(
6060
fory
6161
GIT_REPOSITORY https://github.com/apache/fory.git
62-
GIT_TAG v0.15.0
62+
GIT_TAG v0.17.0
6363
SOURCE_SUBDIR cpp
6464
)
6565
FetchContent_MakeAvailable(fory)
@@ -89,11 +89,11 @@ module(
8989

9090
bazel_dep(name = "rules_cc", version = "0.1.1")
9191

92-
bazel_dep(name = "fory", version = "0.16.0")
92+
bazel_dep(name = "fory", version = "0.17.0")
9393
git_override(
9494
module_name = "fory",
9595
remote = "https://github.com/apache/fory.git",
96-
commit = "v0.15.0", # Or use a specific commit hash for reproducibility
96+
commit = "v0.17.0", # Or use a specific commit hash for reproducibility
9797
)
9898
```
9999

@@ -117,7 +117,7 @@ bazel run //:my_app
117117
For local development, you can use `local_path_override` instead:
118118

119119
```bazel
120-
bazel_dep(name = "fory", version = "0.16.0")
120+
bazel_dep(name = "fory", version = "0.17.0")
121121
local_path_override(
122122
module_name = "fory",
123123
path = "/path/to/fory",

docs/guide/csharp/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Reference the single `Apache.Fory` package. It includes the runtime and the sour
4343

4444
```xml
4545
<ItemGroup>
46-
<PackageReference Include="Apache.Fory" Version="0.16.0" />
46+
<PackageReference Include="Apache.Fory" Version="0.17.0" />
4747
</ItemGroup>
4848
```
4949

docs/guide/kotlin/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,14 @@ See [Java Features](../java/index.md#features) for complete feature list.
5050
<dependency>
5151
<groupId>org.apache.fory</groupId>
5252
<artifactId>fory-kotlin</artifactId>
53-
<version>0.16.0</version>
53+
<version>0.17.0</version>
5454
</dependency>
5555
```
5656

5757
### Gradle
5858

5959
```kotlin
60-
implementation("org.apache.fory:fory-kotlin:0.16.0")
60+
implementation("org.apache.fory:fory-kotlin:0.17.0")
6161
```
6262

6363
## Quick Start

docs/guide/scala/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ See [Java Features](../java/index.md#features) for complete feature list.
4848
Add the dependency with sbt:
4949

5050
```sbt
51-
libraryDependencies += "org.apache.fory" %% "fory-scala" % "0.16.0"
51+
libraryDependencies += "org.apache.fory" %% "fory-scala" % "0.17.0"
5252
```
5353

5454
## Quick Start

docs/guide/xlang/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ This guide covers installation and basic setup for cross-language serialization
3131
<dependency>
3232
<groupId>org.apache.fory</groupId>
3333
<artifactId>fory-core</artifactId>
34-
<version>0.16.0</version>
34+
<version>0.17.0</version>
3535
</dependency>
3636
```
3737

3838
**Gradle:**
3939

4040
```gradle
41-
implementation 'org.apache.fory:fory-core:0.16.0'
41+
implementation 'org.apache.fory:fory-core:0.17.0'
4242
```
4343

4444
### Python

examples/cpp/hello_row/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ For your own project using Fory as a dependency:
7777

7878
```bazel
7979
# In your MODULE.bazel
80-
bazel_dep(name = "fory", version = "0.16.0")
80+
bazel_dep(name = "fory", version = "0.17.0")
8181
git_override(
8282
module_name = "fory",
8383
remote = "https://github.com/apache/fory.git",

examples/cpp/hello_world/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ For your own project using Fory as a dependency:
7070

7171
```bazel
7272
# In your MODULE.bazel
73-
bazel_dep(name = "fory", version = "0.16.0")
73+
bazel_dep(name = "fory", version = "0.17.0")
7474
git_override(
7575
module_name = "fory",
7676
remote = "https://github.com/apache/fory.git",

0 commit comments

Comments
 (0)