Skip to content

Commit

Permalink
bump version to 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
chaokunyang committed Dec 8, 2023
1 parent 3355cb9 commit 8728de6
Show file tree
Hide file tree
Showing 15 changed files with 22 additions and 17 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,19 +111,19 @@ Release version:
<dependency>
<groupId>org.furyio</groupId>
<artifactId>fury-core</artifactId>
<version>0.4.0</version>
<version>0.4.1</version>
</dependency>
<!-- row/arrow format support -->
<!-- <dependency>
<groupId>org.furyio</groupId>
<artifactId>fury-format</artifactId>
<version>0.4.0</version>
<version>0.4.1</version>
</dependency> -->
```

### Scala
```sbt
libraryDependencies += "org.furyio" % "fury-core" % "0.4.0"
libraryDependencies += "org.furyio" % "fury-core" % "0.4.1"
```

### Python
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/java_object_graph_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ if(JavaSerializer.serializedByJDK(bytes)){

### Upgrade fury
Currently binary compatibility is ensured for minor versions only. For example, if you are using fury`v0.2.0`, binary compatibility will
be provided if you upgrade to fury `v0.2.1`. But if upgrade to fury `v0.4.0`, no binary compatibility are ensured.
be provided if you upgrade to fury `v0.2.1`. But if upgrade to fury `v0.4.1`, no binary compatibility are ensured.
Most of the time there is no need to upgrade fury to newer major version, the current version is fast and compact enough,
and we provide some minor fix for recent older versions.

Expand Down
2 changes: 1 addition & 1 deletion docs/guide/scala_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Scala 2 and 3 are both supported.

## Install
```sbt
libraryDependencies += "org.furyio" % "fury-core" % "0.4.0"
libraryDependencies += "org.furyio" % "fury-core" % "0.4.1"
```

## Fury creation
Expand Down
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.5.0-SNAPSHOT</version>
<version>0.4.1</version>

<properties>
<maven.compiler.source>8</maven.compiler.source>
Expand Down
2 changes: 1 addition & 1 deletion integration_tests/latest_jdk_tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

<groupId>org.furyio</groupId>
<artifactId>latest_jdk_tests</artifactId>
<version>0.5.0-SNAPSHOT</version>
<version>0.4.1</version>

<properties>
<maven.compiler.source>17</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.5.0-SNAPSHOT</version>
<version>0.4.1</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jmh.version>1.33</jmh.version>
Expand Down
7 changes: 6 additions & 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.5.0-SNAPSHOT</version>
<version>0.4.1</version>
</parent>

<artifactId>fury-benchmark</artifactId>
Expand Down Expand Up @@ -161,6 +161,11 @@
<artifactId>smoothie-map</artifactId>
<version>2.0.2</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.16.0</version>
</dependency>
</dependencies>

<build>
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.5.0-SNAPSHOT</version>
<version>0.4.1</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.5.0-SNAPSHOT</version>
<version>0.4.1</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.5.0-SNAPSHOT</version>
<version>0.4.1</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.5.0-SNAPSHOT</version>
<version>0.4.1</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.5.0-SNAPSHOT</version>
<version>0.4.1</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.5.3-beta",
"version": "0.4.1",
"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.5.0.dev",
"version": "0.4.1",
"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.5.0.dev"
__version__ = "0.4.1"

0 comments on commit 8728de6

Please sign in to comment.