Skip to content

Commit

Permalink
chore: bump release version to 0.5.1 (#1652)
Browse files Browse the repository at this point in the history
## What does this PR do?

This PR bumps release version to 0.5.1 since fury 0.5.1 has been
released

## Does this PR introduce any user-facing change?

<!--
If any user-facing interface changes, please [open an
issue](https://github.com/apache/incubator-fury/issues/new/choose)
describing the need to do so and update the document if necessary.
-->

- [ ] Does this PR introduce any public API change?
- [ ] Does this PR introduce any binary protocol compatibility change?


## Benchmark

<!--
When the PR has an impact on performance (if you don't know whether the
PR will have an impact on performance, you can submit the PR first, and
if it will have impact on performance, the code reviewer will explain
it), be sure to attach a benchmark data here.
-->
  • Loading branch information
chaokunyang committed May 28, 2024
1 parent 3a0e410 commit 489439d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 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.apache.fury</groupId>
<artifactId>fury-core</artifactId>
<version>0.5.0</version>
<version>0.5.1</version>
</dependency>
<!-- row/arrow format support -->
<!-- <dependency>
<groupId>org.apache.fury</groupId>
<artifactId>fury-format</artifactId>
<version>0.5.0</version>
<version>0.5.1</version>
</dependency> -->
```

### Scala
```sbt
libraryDependencies += "org.apache.fury" % "fury-core" % "0.5.0"
libraryDependencies += "org.apache.fury" % "fury-core" % "0.5.1"
```

### Python
Expand Down
2 changes: 1 addition & 1 deletion ci/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def prepare(v: str):


def build(v: str):
"""version format: 0.5.0"""
"""version format: 0.5.1"""
logger.info("Start to prepare release artifacts for version %s", v)
_check_release_version(v)
os.chdir(PROJECT_ROOT_DIR)
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 @@ -16,7 +16,7 @@ Scala 2 and 3 are both supported.

## Install
```sbt
libraryDependencies += "org.apache.fury" % "fury-core" % "0.5.0"
libraryDependencies += "org.apache.fury" % "fury-core" % "0.5.1"
```

## Fury creation
Expand Down

0 comments on commit 489439d

Please sign in to comment.