Skip to content

Commit f0b3634

Browse files
authored
Prepare for 0.8.0 development (#1530)
1 parent be346c4 commit f0b3634

File tree

12 files changed

+18
-18
lines changed

12 files changed

+18
-18
lines changed

common/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ under the License.
2626
<parent>
2727
<groupId>org.apache.datafusion</groupId>
2828
<artifactId>comet-parent-spark${spark.version.short}_${scala.binary.version}</artifactId>
29-
<version>0.7.0-SNAPSHOT</version>
29+
<version>0.8.0-SNAPSHOT</version>
3030
<relativePath>../pom.xml</relativePath>
3131
</parent>
3232

dev/diffs/3.4.3.diff

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ index d3544881af1..26ab186c65d 100644
77
<ivy.version>2.5.1</ivy.version>
88
<oro.version>2.0.8</oro.version>
99
+ <spark.version.short>3.4</spark.version.short>
10-
+ <comet.version>0.7.0-SNAPSHOT</comet.version>
10+
+ <comet.version>0.8.0-SNAPSHOT</comet.version>
1111
<!--
1212
If you changes codahale.metrics.version, you also need to change
1313
the link to metrics.dropwizard.io in docs/monitoring.md.

dev/diffs/3.5.4.diff

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ index 8dc47f391f9..8a3e72133a8 100644
77
<ivy.version>2.5.1</ivy.version>
88
<oro.version>2.0.8</oro.version>
99
+ <spark.version.short>3.5</spark.version.short>
10-
+ <comet.version>0.7.0-SNAPSHOT</comet.version>
10+
+ <comet.version>0.8.0-SNAPSHOT</comet.version>
1111
<!--
1212
If you changes codahale.metrics.version, you also need to change
1313
the link to metrics.dropwizard.io in docs/monitoring.md.

dev/diffs/4.0.0-preview1.diff

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ index a4b1b2c3c9f..6a532749978 100644
77
<ivy.version>2.5.2</ivy.version>
88
<oro.version>2.0.8</oro.version>
99
+ <spark.version.short>4.0</spark.version.short>
10-
+ <comet.version>0.7.0-SNAPSHOT</comet.version>
10+
+ <comet.version>0.8.0-SNAPSHOT</comet.version>
1111
<!--
1212
If you change codahale.metrics.version, you also need to change
1313
the link to metrics.dropwizard.io in docs/monitoring.md.

docs/source/contributor-guide/debugging.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ Then build the Comet as [described](https://github.com/apache/arrow-datafusion-c
130130
Start Comet with `RUST_BACKTRACE=1`
131131

132132
```console
133-
RUST_BACKTRACE=1 $SPARK_HOME/spark-shell --jars spark/target/comet-spark-spark3.4_2.12-0.7.0-SNAPSHOT.jar --conf spark.plugins=org.apache.spark.CometPlugin --conf spark.comet.enabled=true --conf spark.comet.exec.enabled=true
133+
RUST_BACKTRACE=1 $SPARK_HOME/spark-shell --jars spark/target/comet-spark-spark3.4_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
134134
```
135135

136136
Get the expanded exception details

docs/source/user-guide/installation.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ See the [Comet Kubernetes Guide](kubernetes.md) guide.
7474
Make sure `SPARK_HOME` points to the same Spark version as Comet was built for.
7575

7676
```console
77-
export COMET_JAR=spark/target/comet-spark-spark3.4_2.12-0.7.0-SNAPSHOT.jar
77+
export COMET_JAR=spark/target/comet-spark-spark3.4_2.12-0.8.0-SNAPSHOT.jar
7878

7979
$SPARK_HOME/bin/spark-shell \
8080
--jars $COMET_JAR \
@@ -130,7 +130,7 @@ explicitly contain Comet otherwise Spark may use a different class-loader for th
130130
components which will then fail at runtime. For example:
131131

132132
```
133-
--driver-class-path spark/target/comet-spark-spark3.4_2.12-0.7.0-SNAPSHOT.jar
133+
--driver-class-path spark/target/comet-spark-spark3.4_2.12-0.8.0-SNAPSHOT.jar
134134
```
135135

136136
Some cluster managers may require additional configuration, see <https://spark.apache.org/docs/latest/cluster-overview.html>

fuzz-testing/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ under the License.
2525
<parent>
2626
<groupId>org.apache.datafusion</groupId>
2727
<artifactId>comet-parent-spark${spark.version.short}_${scala.binary.version}</artifactId>
28-
<version>0.7.0-SNAPSHOT</version>
28+
<version>0.8.0-SNAPSHOT</version>
2929
<relativePath>../pom.xml</relativePath>
3030
</parent>
3131

native/Cargo.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

native/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ members = ["core", "spark-expr", "proto", "hdfs"]
2121
resolver = "2"
2222

2323
[workspace.package]
24-
version = "0.7.0"
24+
version = "0.8.0"
2525
homepage = "https://datafusion.apache.org/comet"
2626
repository = "https://github.com/apache/datafusion-comet"
2727
authors = ["Apache DataFusion <[email protected]>"]
@@ -39,8 +39,8 @@ async-trait = { version = "0.1" }
3939
bytes = { version = "1.10.0" }
4040
parquet = { version = "54.2.0", default-features = false, features = ["experimental"] }
4141
datafusion = { version = "46.0.0", default-features = false, features = ["unicode_expressions", "crypto_expressions", "nested_expressions", "parquet"] }
42-
datafusion-comet-spark-expr = { path = "spark-expr", version = "0.7.0" }
43-
datafusion-comet-proto = { path = "proto", version = "0.7.0" }
42+
datafusion-comet-spark-expr = { path = "spark-expr", version = "0.8.0" }
43+
datafusion-comet-proto = { path = "proto", version = "0.8.0" }
4444
chrono = { version = "0.4", default-features = false, features = ["clock"] }
4545
chrono-tz = { version = "0.8" }
4646
futures = "0.3.28"

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ under the License.
3030
</parent>
3131
<groupId>org.apache.datafusion</groupId>
3232
<artifactId>comet-parent-spark${spark.version.short}_${scala.binary.version}</artifactId>
33-
<version>0.7.0-SNAPSHOT</version>
33+
<version>0.8.0-SNAPSHOT</version>
3434
<packaging>pom</packaging>
3535
<name>Comet Project Parent POM</name>
3636

spark-integration/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ under the License.
2626
<parent>
2727
<groupId>org.apache.datafusion</groupId>
2828
<artifactId>comet-parent-spark${spark.version.short}_${scala.binary.version}</artifactId>
29-
<version>0.7.0-SNAPSHOT</version>
29+
<version>0.8.0-SNAPSHOT</version>
3030
<relativePath>../pom.xml</relativePath>
3131
</parent>
3232

spark/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ under the License.
2626
<parent>
2727
<groupId>org.apache.datafusion</groupId>
2828
<artifactId>comet-parent-spark${spark.version.short}_${scala.binary.version}</artifactId>
29-
<version>0.7.0-SNAPSHOT</version>
29+
<version>0.8.0-SNAPSHOT</version>
3030
<relativePath>../pom.xml</relativePath>
3131
</parent>
3232

0 commit comments

Comments
 (0)