Skip to content

Commit 8a39202

Browse files
committed
Prepare 0.3.0 release
1 parent 4babdd0 commit 8a39202

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
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</artifactId>
9-
<version>0.3.0-SNAPSHOT</version>
9+
<version>0.3.0</version>
1010

1111
<name>raydp</name>
1212

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.3.0.dev0"
20+
__version__ = "0.3.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.dev0")
3131
else:
32-
VERSION = "0.3.0.dev0"
32+
VERSION = "0.3.0"
3333

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

0 commit comments

Comments
 (0)