From 18f38b34fe715dfdae7ac29cf8fb9474d65c012d Mon Sep 17 00:00:00 2001 From: Carson Wang Date: Tue, 19 Apr 2022 22:36:54 +0800 Subject: [PATCH] Prepare 0.4.2 Release (#231) --- core/pom.xml | 2 +- python/raydp/__init__.py | 2 +- python/setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/core/pom.xml b/core/pom.xml index 1ca524d3..0724af87 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -6,7 +6,7 @@ com.intel raydp - 0.4.1 + 0.4.2 raydp diff --git a/python/raydp/__init__.py b/python/raydp/__init__.py index 9352e0f4..6143e5c7 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.4.1" +__version__ = "0.4.2" __all__ = ["init_spark", "stop_spark"] diff --git a/python/setup.py b/python/setup.py index 3f96e2ef..2911e70a 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.dev0") else: - VERSION = "0.4.1" + VERSION = "0.4.2" ROOT_DIR = os.path.dirname(__file__)