Skip to content

Commit

Permalink
Prepare 0.6.0 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
carsonwang committed Dec 2, 2022
1 parent a48850b commit 2566da1
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.intel</groupId>
<artifactId>raydp-parent</artifactId>
<version>0.6.0-SNAPSHOT</version>
<version>0.6.0</version>
<packaging>pom</packaging>

<name>RayDP Parent Pom</name>
Expand Down
2 changes: 1 addition & 1 deletion core/raydp-main/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.intel</groupId>
<artifactId>raydp-parent</artifactId>
<version>0.6.0-SNAPSHOT</version>
<version>0.6.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
4 changes: 2 additions & 2 deletions core/shims/common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
<parent>
<groupId>com.intel</groupId>
<artifactId>raydp-shims</artifactId>
<version>0.6.0-SNAPSHOT</version>
<version>0.6.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>raydp-shims-common</artifactId>
<name>RayDP Shims Common</name>
<version>0.6.0-SNAPSHOT</version>
<version>0.6.0</version>
<packaging>jar</packaging>

<build>
Expand Down
2 changes: 1 addition & 1 deletion core/shims/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.intel</groupId>
<artifactId>raydp-parent</artifactId>
<version>0.6.0-SNAPSHOT</version>
<version>0.6.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion core/shims/spark321/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.intel</groupId>
<artifactId>raydp-shims</artifactId>
<version>0.6.0-SNAPSHOT</version>
<version>0.6.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion core/shims/spark330/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.intel</groupId>
<artifactId>raydp-shims</artifactId>
<version>0.6.0-SNAPSHOT</version>
<version>0.6.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion python/raydp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@

from raydp.context import init_spark, stop_spark

__version__ = "0.6.0.dev0"
__version__ = "0.6.0"

__all__ = ["init_spark", "stop_spark"]
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
if package_name == 'raydp_nightly':
VERSION = datetime.today().strftime("%Y.%m.%d.dev1")
else:
VERSION = "0.6.0.dev0"
VERSION = "0.6.0"

ROOT_DIR = os.path.dirname(__file__)

Expand Down

0 comments on commit 2566da1

Please sign in to comment.