Skip to content

Commit

Permalink
[Doc] bump release version to 0.4.1 (#1242)
Browse files Browse the repository at this point in the history
bump release version to 0.4.1
  • Loading branch information
chaokunyang authored Dec 21, 2023
1 parent fd67af5 commit dfb2f43
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,25 +111,24 @@ 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
```bash
# Release version will be provided in the future.
pip install pyfury --pre
pip install pyfury
```

### JavaScript
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

0 comments on commit dfb2f43

Please sign in to comment.