This is an automated email from the ASF dual-hosted git repository.
chaokunyang pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-fury.git
The following commit(s) were added to refs/heads/main by this push:
new 489439d7 chore: bump release version to 0.5.1 (#1652)
489439d7 is described below
commit 489439d74c99cb20d7c40198ff10c0e390f96703
Author: Shawn Yang <[email protected]>
AuthorDate: Tue May 28 19:01:43 2024 +0800
chore: bump release version to 0.5.1 (#1652)
## 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.
-->
---
README.md | 6 +++---
ci/release.py | 2 +-
docs/guide/scala_guide.md | 2 +-
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/README.md b/README.md
index 01cb76dc..11ec450f 100644
--- a/README.md
+++ b/README.md
@@ -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
diff --git a/ci/release.py b/ci/release.py
index 19ab919f..be2c8a4a 100644
--- a/ci/release.py
+++ b/ci/release.py
@@ -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)
diff --git a/docs/guide/scala_guide.md b/docs/guide/scala_guide.md
index 7527029c..f83a41cd 100644
--- a/docs/guide/scala_guide.md
+++ b/docs/guide/scala_guide.md
@@ -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
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]