diff --git a/core/pom.xml b/core/pom.xml index 0004b9ff..c3173cfc 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -6,7 +6,7 @@ com.intel raydp-parent - 0.7.0-SNAPSHOT + 1.5.0 pom RayDP Parent Pom diff --git a/core/raydp-main/pom.xml b/core/raydp-main/pom.xml index e6b2742a..c6101db1 100644 --- a/core/raydp-main/pom.xml +++ b/core/raydp-main/pom.xml @@ -7,7 +7,7 @@ com.intel raydp-parent - 0.7.0-SNAPSHOT + 1.5.0 ../pom.xml diff --git a/core/shims/common/pom.xml b/core/shims/common/pom.xml index c5d1d7fa..4a7a7f9a 100644 --- a/core/shims/common/pom.xml +++ b/core/shims/common/pom.xml @@ -7,13 +7,13 @@ com.intel raydp-shims - 0.7.0-SNAPSHOT + 1.5.0 ../pom.xml raydp-shims-common RayDP Shims Common - 0.7.0-SNAPSHOT + 1.5.0 jar diff --git a/core/shims/pom.xml b/core/shims/pom.xml index 89b9fa3d..6ea913d4 100644 --- a/core/shims/pom.xml +++ b/core/shims/pom.xml @@ -7,7 +7,7 @@ com.intel raydp-parent - 0.7.0-SNAPSHOT + 1.5.0 ../pom.xml diff --git a/core/shims/spark321/pom.xml b/core/shims/spark321/pom.xml index 9795f86b..e9843461 100644 --- a/core/shims/spark321/pom.xml +++ b/core/shims/spark321/pom.xml @@ -7,7 +7,7 @@ com.intel raydp-shims - 0.7.0-SNAPSHOT + 1.5.0 ../pom.xml diff --git a/core/shims/spark330/pom.xml b/core/shims/spark330/pom.xml index 472f718d..00e5ec31 100644 --- a/core/shims/spark330/pom.xml +++ b/core/shims/spark330/pom.xml @@ -7,7 +7,7 @@ com.intel raydp-shims - 0.7.0-SNAPSHOT + 1.5.0 ../pom.xml diff --git a/python/raydp/__init__.py b/python/raydp/__init__.py index f6ff48c1..48c7f4c6 100644 --- a/python/raydp/__init__.py +++ b/python/raydp/__init__.py @@ -17,6 +17,6 @@ from raydp.context import init_spark, stop_spark -__version__ = "0.7.0.dev0" +__version__ = "1.5.0" __all__ = ["init_spark", "stop_spark"] diff --git a/python/setup.py b/python/setup.py index fdf4b0d6..e12a879f 100644 --- a/python/setup.py +++ b/python/setup.py @@ -29,7 +29,7 @@ if package_name == 'raydp_nightly': VERSION = datetime.today().strftime("%Y.%m.%d.dev1") else: - VERSION = "0.7.0.dev0" + VERSION = "1.5.0" ROOT_DIR = os.path.dirname(__file__)