Skip to content

Commit 260e79b

Browse files
author
Zhi Lin
committed
Prepare for 1.6.0 release
Signed-off-by: Zhi Lin <zhi.lin@intel.com>
1 parent 3f38510 commit 260e79b

File tree

10 files changed

+11
-18
lines changed

10 files changed

+11
-18
lines changed

core/agent/pom.xml

Lines changed: 1 addition & 1 deletion
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>1.6.0-SNAPSHOT</version>
10+
<version>1.6.0</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

core/pom.xml

Lines changed: 1 addition & 1 deletion
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>1.6.0-SNAPSHOT</version>
9+
<version>1.6.0</version>
1010
<packaging>pom</packaging>
1111

1212
<name>RayDP Parent Pom</name>

core/raydp-main/pom.xml

Lines changed: 1 addition & 1 deletion
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>1.6.0-SNAPSHOT</version>
10+
<version>1.6.0</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

core/shims/common/pom.xml

Lines changed: 2 additions & 2 deletions
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>1.6.0-SNAPSHOT</version>
10+
<version>1.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>1.6.0-SNAPSHOT</version>
16+
<version>1.6.0</version>
1717
<packaging>jar</packaging>
1818

1919
<build>

core/shims/pom.xml

Lines changed: 1 addition & 1 deletion
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>1.6.0-SNAPSHOT</version>
10+
<version>1.6.0</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

core/shims/spark322/pom.xml

Lines changed: 1 addition & 1 deletion
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>1.6.0-SNAPSHOT</version>
10+
<version>1.6.0</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

core/shims/spark330/pom.xml

Lines changed: 1 addition & 1 deletion
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>1.6.0-SNAPSHOT</version>
10+
<version>1.6.0</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

core/shims/spark340/pom.xml

Lines changed: 1 addition & 1 deletion
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>1.6.0-SNAPSHOT</version>
10+
<version>1.6.0</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

python/raydp/__init__.py

Lines changed: 1 addition & 1 deletion
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__ = "1.6.0.dev0"
20+
__version__ = "1.6.0"
2121

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

python/setup.py

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,7 @@
2727

2828
build_mode = os.getenv("RAYDP_BUILD_MODE", "")
2929
package_name = os.getenv("RAYDP_PACKAGE_NAME", "raydp")
30-
BASE_VERSION = "1.6.0"
31-
if build_mode == "nightly":
32-
VERSION = BASE_VERSION + datetime.today().strftime("b%Y%m%d.dev0")
33-
# for legacy raydp_nightly package
34-
elif package_name == 'raydp_nightly':
35-
VERSION = datetime.today().strftime("%Y.%m.%d.dev0")
36-
else:
37-
VERSION = BASE_VERSION + ".dev0"
30+
VERSION = "1.6.0"
3831

3932
ROOT_DIR = os.path.dirname(__file__)
4033

0 commit comments

Comments
 (0)