Skip to content

Commit 2566da1

Browse files
committed
Prepare 0.6.0 Release
1 parent a48850b commit 2566da1

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.intel</groupId>
88
<artifactId>raydp-parent</artifactId>
9-
<version>0.6.0-SNAPSHOT</version>
9+
<version>0.6.0</version>
1010
<packaging>pom</packaging>
1111

1212
<name>RayDP Parent Pom</name>

core/raydp-main/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.intel</groupId>
99
<artifactId>raydp-parent</artifactId>
10-
<version>0.6.0-SNAPSHOT</version>
10+
<version>0.6.0</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

core/shims/common/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
<parent>
88
<groupId>com.intel</groupId>
99
<artifactId>raydp-shims</artifactId>
10-
<version>0.6.0-SNAPSHOT</version>
10+
<version>0.6.0</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

1414
<artifactId>raydp-shims-common</artifactId>
1515
<name>RayDP Shims Common</name>
16-
<version>0.6.0-SNAPSHOT</version>
16+
<version>0.6.0</version>
1717
<packaging>jar</packaging>
1818

1919
<build>

core/shims/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.intel</groupId>
99
<artifactId>raydp-parent</artifactId>
10-
<version>0.6.0-SNAPSHOT</version>
10+
<version>0.6.0</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

core/shims/spark321/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.intel</groupId>
99
<artifactId>raydp-shims</artifactId>
10-
<version>0.6.0-SNAPSHOT</version>
10+
<version>0.6.0</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

core/shims/spark330/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.intel</groupId>
99
<artifactId>raydp-shims</artifactId>
10-
<version>0.6.0-SNAPSHOT</version>
10+
<version>0.6.0</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

python/raydp/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717

1818
from raydp.context import init_spark, stop_spark
1919

20-
__version__ = "0.6.0.dev0"
20+
__version__ = "0.6.0"
2121

2222
__all__ = ["init_spark", "stop_spark"]

python/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
if package_name == 'raydp_nightly':
3030
VERSION = datetime.today().strftime("%Y.%m.%d.dev1")
3131
else:
32-
VERSION = "0.6.0.dev0"
32+
VERSION = "0.6.0"
3333

3434
ROOT_DIR = os.path.dirname(__file__)
3535

0 commit comments

Comments
 (0)