We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30ecd04 commit 7655efdCopy full SHA for 7655efd
core/pom.xml
@@ -6,7 +6,7 @@
6
7
<groupId>com.intel</groupId>
8
<artifactId>raydp</artifactId>
9
- <version>0.4.0-SNAPSHOT</version>
+ <version>0.4.0</version>
10
11
<name>raydp</name>
12
python/raydp/__init__.py
@@ -17,6 +17,6 @@
17
18
from raydp.context import init_spark, stop_spark
19
20
-__version__ = "0.4.0.dev0"
+__version__ = "0.4.0"
21
22
__all__ = ["init_spark", "stop_spark"]
python/setup.py
@@ -29,7 +29,7 @@
29
if package_name == 'raydp_nightly':
30
VERSION = datetime.today().strftime("%Y.%m.%d.dev0")
31
else:
32
- VERSION = "0.4.0.dev0"
+ VERSION = "0.4.0"
33
34
ROOT_DIR = os.path.dirname(__file__)
35
0 commit comments