Skip to content

Commit

Permalink
bump version to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chaokunyang committed Oct 8, 2023
1 parent f146a9b commit 39ad535
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion integration_tests/jdk_compatibility_tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

<groupId>org.furyio</groupId>
<artifactId>jdk_compatibility_tests</artifactId>
<version>0.2.0-alpha.1</version>
<version>0.2.0</version>

<properties>
<maven.compiler.source>8</maven.compiler.source>
Expand Down
2 changes: 1 addition & 1 deletion integration_tests/perftests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.furyio</groupId>
<artifactId>perftests</artifactId>
<version>0.2.0-alpha.1</version>
<version>0.2.0</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jmh.version>1.33</jmh.version>
Expand Down
2 changes: 1 addition & 1 deletion java/fury-benchmark/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<artifactId>fury-parent</artifactId>
<groupId>org.furyio</groupId>
<version>0.2.0-alpha.1</version>
<version>0.2.0</version>
</parent>

<artifactId>fury-benchmark</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion java/fury-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.furyio</groupId>
<artifactId>fury-parent</artifactId>
<version>0.2.0-alpha.1</version>
<version>0.2.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion java/fury-format/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.furyio</groupId>
<artifactId>fury-parent</artifactId>
<version>0.2.0-alpha.1</version>
<version>0.2.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion java/fury-test-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<artifactId>fury-parent</artifactId>
<groupId>org.furyio</groupId>
<version>0.2.0-alpha.1</version>
<version>0.2.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion java/fury-testsuite/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<artifactId>fury-parent</artifactId>
<groupId>org.furyio</groupId>
<version>0.2.0-alpha.1</version>
<version>0.2.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<groupId>org.furyio</groupId>
<artifactId>fury-parent</artifactId>
<packaging>pom</packaging>
<version>0.2.0-alpha.1</version>
<version>0.2.0</version>
<name>Fury Project Parent POM</name>
<description>A blazing fast multi-language serialization framework powered by jit and zero-copy.</description>
<url>https://github.com/alipay/fury</url>
Expand Down
2 changes: 1 addition & 1 deletion javascript/packages/fury/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@furyjs/fury",
"version": "0.2.0-alpha.1",
"version": "0.2.0",
"description": "A blazing fast multi-language serialization framework powered by jit and zero-copy",
"main": "dist/index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion javascript/packages/hps/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@furyjs/hps",
"version": "0.2.0-alpha.1",
"version": "0.2.0",
"description": "fury nodejs high-performance suite",
"main": "dist/index.js",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion python/pyfury/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,4 @@
except (AttributeError, ImportError):
pass

__version__ = "0.2.0.a1"
__version__ = "0.2.0"

0 comments on commit 39ad535

Please sign in to comment.