This is an automated email from the ASF dual-hosted git repository. agrove pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/datafusion-comet.git
The following commit(s) were added to refs/heads/main by this push: new 8f402d566 Start 0.9.0 development (#1676) 8f402d566 is described below commit 8f402d5661bf00a0cb09f54479352468430a8560 Author: Andy Grove <agr...@apache.org> AuthorDate: Wed Apr 23 11:45:36 2025 -0600 Start 0.9.0 development (#1676) --- common/pom.xml | 2 +- dev/diffs/3.4.3.diff | 2 +- dev/diffs/3.5.4.diff | 2 +- dev/diffs/3.5.5.diff | 2 +- dev/diffs/4.0.0-preview1.diff | 2 +- dev/release/README.md | 1 - docs/source/contributor-guide/debugging.md | 2 +- docs/source/user-guide/installation.md | 4 ++-- fuzz-testing/pom.xml | 2 +- native/Cargo.toml | 6 +++--- pom.xml | 2 +- spark-integration/pom.xml | 2 +- spark/pom.xml | 2 +- 13 files changed, 15 insertions(+), 16 deletions(-) diff --git a/common/pom.xml b/common/pom.xml index 9b0927b40..9ce3ed57c 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -26,7 +26,7 @@ under the License. <parent> <groupId>org.apache.datafusion</groupId> <artifactId>comet-parent-spark${spark.version.short}_${scala.binary.version}</artifactId> - <version>0.8.0-SNAPSHOT</version> + <version>0.9.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> diff --git a/dev/diffs/3.4.3.diff b/dev/diffs/3.4.3.diff index 50d8df222..c2d88ee91 100644 --- a/dev/diffs/3.4.3.diff +++ b/dev/diffs/3.4.3.diff @@ -7,7 +7,7 @@ index d3544881af1..2860f13daf9 100644 <ivy.version>2.5.1</ivy.version> <oro.version>2.0.8</oro.version> + <spark.version.short>3.4</spark.version.short> -+ <comet.version>0.8.0-SNAPSHOT</comet.version> ++ <comet.version>0.9.0-SNAPSHOT</comet.version> <!-- If you changes codahale.metrics.version, you also need to change the link to metrics.dropwizard.io in docs/monitoring.md. diff --git a/dev/diffs/3.5.4.diff b/dev/diffs/3.5.4.diff index b9f02eedf..af121b8ea 100644 --- a/dev/diffs/3.5.4.diff +++ b/dev/diffs/3.5.4.diff @@ -7,7 +7,7 @@ index 8dc47f391f9..94cd1cee609 100644 <ivy.version>2.5.1</ivy.version> <oro.version>2.0.8</oro.version> + <spark.version.short>3.5</spark.version.short> -+ <comet.version>0.8.0-SNAPSHOT</comet.version> ++ <comet.version>0.9.0-SNAPSHOT</comet.version> <!-- If you changes codahale.metrics.version, you also need to change the link to metrics.dropwizard.io in docs/monitoring.md. diff --git a/dev/diffs/3.5.5.diff b/dev/diffs/3.5.5.diff index b6d2c986c..9df68d904 100644 --- a/dev/diffs/3.5.5.diff +++ b/dev/diffs/3.5.5.diff @@ -7,7 +7,7 @@ index 9b009c3a42a..8d933af9777 100644 <ivy.version>2.5.1</ivy.version> <oro.version>2.0.8</oro.version> + <spark.version.short>3.5</spark.version.short> -+ <comet.version>0.8.0-SNAPSHOT</comet.version> ++ <comet.version>0.9.0-SNAPSHOT</comet.version> <!-- If you changes codahale.metrics.version, you also need to change the link to metrics.dropwizard.io in docs/monitoring.md. diff --git a/dev/diffs/4.0.0-preview1.diff b/dev/diffs/4.0.0-preview1.diff index 62422de4e..855bab5ee 100644 --- a/dev/diffs/4.0.0-preview1.diff +++ b/dev/diffs/4.0.0-preview1.diff @@ -7,7 +7,7 @@ index a4b1b2c3c9f..6a532749978 100644 <ivy.version>2.5.2</ivy.version> <oro.version>2.0.8</oro.version> + <spark.version.short>4.0</spark.version.short> -+ <comet.version>0.8.0-SNAPSHOT</comet.version> ++ <comet.version>0.9.0-SNAPSHOT</comet.version> <!-- If you change codahale.metrics.version, you also need to change the link to metrics.dropwizard.io in docs/monitoring.md. diff --git a/dev/release/README.md b/dev/release/README.md index 479783b5e..dcab5a5fe 100644 --- a/dev/release/README.md +++ b/dev/release/README.md @@ -60,7 +60,6 @@ Create a PR against the main branch to prepare for developing the next release: - Update the Rust crate version to `0.2.0`. - Update the Maven version to `0.2.0-SNAPSHOT` (both in the `pom.xml` files and also in the diff files under `dev/diffs`). -- Update the CI scripts under the `.github` directory. ### Generate the Change Log diff --git a/docs/source/contributor-guide/debugging.md b/docs/source/contributor-guide/debugging.md index 94bdb072b..cbdf9264c 100644 --- a/docs/source/contributor-guide/debugging.md +++ b/docs/source/contributor-guide/debugging.md @@ -130,7 +130,7 @@ Then build the Comet as [described](https://github.com/apache/arrow-datafusion-c Start Comet with `RUST_BACKTRACE=1` ```console -RUST_BACKTRACE=1 $SPARK_HOME/spark-shell --jars spark/target/comet-spark-spark3.5_2.12-0.8.0-SNAPSHOT.jar --conf spark.plugins=org.apache.spark.CometPlugin --conf spark.comet.enabled=true --conf spark.comet.exec.enabled=true +RUST_BACKTRACE=1 $SPARK_HOME/spark-shell --jars spark/target/comet-spark-spark3.5_2.12-0.9.0-SNAPSHOT.jar --conf spark.plugins=org.apache.spark.CometPlugin --conf spark.comet.enabled=true --conf spark.comet.exec.enabled=true ``` Get the expanded exception details diff --git a/docs/source/user-guide/installation.md b/docs/source/user-guide/installation.md index 74488bc60..c4bb25b5b 100644 --- a/docs/source/user-guide/installation.md +++ b/docs/source/user-guide/installation.md @@ -85,7 +85,7 @@ See the [Comet Kubernetes Guide](kubernetes.md) guide. Make sure `SPARK_HOME` points to the same Spark version as Comet was built for. ```shell -export COMET_JAR=spark/target/comet-spark-spark3.5_2.12-0.8.0-SNAPSHOT.jar +export COMET_JAR=spark/target/comet-spark-spark3.5_2.12-0.9.0-SNAPSHOT.jar $SPARK_HOME/bin/spark-shell \ --jars $COMET_JAR \ @@ -141,7 +141,7 @@ explicitly contain Comet otherwise Spark may use a different class-loader for th components which will then fail at runtime. For example: ``` ---driver-class-path spark/target/comet-spark-spark3.5_2.12-0.8.0-SNAPSHOT.jar +--driver-class-path spark/target/comet-spark-spark3.5_2.12-0.9.0-SNAPSHOT.jar ``` Some cluster managers may require additional configuration, see <https://spark.apache.org/docs/latest/cluster-overview.html> diff --git a/fuzz-testing/pom.xml b/fuzz-testing/pom.xml index 4f20aebfc..3ce1c3cb3 100644 --- a/fuzz-testing/pom.xml +++ b/fuzz-testing/pom.xml @@ -25,7 +25,7 @@ under the License. <parent> <groupId>org.apache.datafusion</groupId> <artifactId>comet-parent-spark${spark.version.short}_${scala.binary.version}</artifactId> - <version>0.8.0-SNAPSHOT</version> + <version>0.9.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> diff --git a/native/Cargo.toml b/native/Cargo.toml index 8ab47d098..c41f3223d 100644 --- a/native/Cargo.toml +++ b/native/Cargo.toml @@ -21,7 +21,7 @@ members = ["core", "spark-expr", "proto", "hdfs"] resolver = "2" [workspace.package] -version = "0.8.0" +version = "0.9.0" homepage = "https://datafusion.apache.org/comet" repository = "https://github.com/apache/datafusion-comet" authors = ["Apache DataFusion <d...@datafusion.apache.org>"] @@ -39,8 +39,8 @@ async-trait = { version = "0.1" } bytes = { version = "1.10.0" } parquet = { version = "55.0.0", default-features = false, features = ["experimental"] } datafusion = { git = "https://github.com/apache/datafusion", rev = "47.0.0", default-features = false, features = ["unicode_expressions", "crypto_expressions", "nested_expressions", "parquet"] } -datafusion-comet-spark-expr = { path = "spark-expr", version = "0.8.0" } -datafusion-comet-proto = { path = "proto", version = "0.8.0" } +datafusion-comet-spark-expr = { path = "spark-expr", version = "0.9.0" } +datafusion-comet-proto = { path = "proto", version = "0.9.0" } chrono = { version = "0.4", default-features = false, features = ["clock"] } chrono-tz = { version = "0.8" } futures = "0.3.28" diff --git a/pom.xml b/pom.xml index 7bdfc782a..3b397e76a 100644 --- a/pom.xml +++ b/pom.xml @@ -30,7 +30,7 @@ under the License. </parent> <groupId>org.apache.datafusion</groupId> <artifactId>comet-parent-spark${spark.version.short}_${scala.binary.version}</artifactId> - <version>0.8.0-SNAPSHOT</version> + <version>0.9.0-SNAPSHOT</version> <packaging>pom</packaging> <name>Comet Project Parent POM</name> diff --git a/spark-integration/pom.xml b/spark-integration/pom.xml index 274e780e0..d381359f6 100644 --- a/spark-integration/pom.xml +++ b/spark-integration/pom.xml @@ -26,7 +26,7 @@ under the License. <parent> <groupId>org.apache.datafusion</groupId> <artifactId>comet-parent-spark${spark.version.short}_${scala.binary.version}</artifactId> - <version>0.8.0-SNAPSHOT</version> + <version>0.9.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> diff --git a/spark/pom.xml b/spark/pom.xml index 80150d024..198bac5c8 100644 --- a/spark/pom.xml +++ b/spark/pom.xml @@ -26,7 +26,7 @@ under the License. <parent> <groupId>org.apache.datafusion</groupId> <artifactId>comet-parent-spark${spark.version.short}_${scala.binary.version}</artifactId> - <version>0.8.0-SNAPSHOT</version> + <version>0.9.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@datafusion.apache.org For additional commands, e-mail: commits-h...@datafusion.apache.org