Skip to content

Commit

Permalink
bump to 1.7.0 (#374)
Browse files Browse the repository at this point in the history
Signed-off-by: Zhi Lin <zhi.lin@intel.com>
  • Loading branch information
kira-lin authored Aug 11, 2023
1 parent bdb7a4d commit c03e3cb
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion core/agent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.intel</groupId>
<artifactId>raydp-parent</artifactId>
<version>1.6.0-SNAPSHOT</version>
<version>1.7.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.intel</groupId>
<artifactId>raydp-parent</artifactId>
<version>1.6.0-SNAPSHOT</version>
<version>1.7.0-SNAPSHOT</version>
<packaging>pom</packaging>

<name>RayDP Parent Pom</name>
Expand Down
2 changes: 1 addition & 1 deletion core/raydp-main/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.intel</groupId>
<artifactId>raydp-parent</artifactId>
<version>1.6.0-SNAPSHOT</version>
<version>1.7.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
4 changes: 2 additions & 2 deletions core/shims/common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
<parent>
<groupId>com.intel</groupId>
<artifactId>raydp-shims</artifactId>
<version>1.6.0-SNAPSHOT</version>
<version>1.7.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>raydp-shims-common</artifactId>
<name>RayDP Shims Common</name>
<version>1.6.0-SNAPSHOT</version>
<version>1.7.0-SNAPSHOT</version>
<packaging>jar</packaging>

<build>
Expand Down
2 changes: 1 addition & 1 deletion core/shims/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.intel</groupId>
<artifactId>raydp-parent</artifactId>
<version>1.6.0-SNAPSHOT</version>
<version>1.7.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion core/shims/spark322/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.intel</groupId>
<artifactId>raydp-shims</artifactId>
<version>1.6.0-SNAPSHOT</version>
<version>1.7.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion core/shims/spark330/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.intel</groupId>
<artifactId>raydp-shims</artifactId>
<version>1.6.0-SNAPSHOT</version>
<version>1.7.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion core/shims/spark340/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.intel</groupId>
<artifactId>raydp-shims</artifactId>
<version>1.6.0-SNAPSHOT</version>
<version>1.7.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion python/raydp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@

from raydp.context import init_spark, stop_spark

__version__ = "1.6.0.dev0"
__version__ = "1.7.0.dev0"

__all__ = ["init_spark", "stop_spark"]
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

build_mode = os.getenv("RAYDP_BUILD_MODE", "")
package_name = os.getenv("RAYDP_PACKAGE_NAME", "raydp")
BASE_VERSION = "1.6.0"
BASE_VERSION = "1.7.0"
if build_mode == "nightly":
VERSION = BASE_VERSION + datetime.today().strftime("b%Y%m%d.dev0")
# for legacy raydp_nightly package
Expand Down

0 comments on commit c03e3cb

Please sign in to comment.