Skip to content

Commit 8f402d5

Browse files
authored
Start 0.9.0 development (#1676)
1 parent 07c7ef5 commit 8f402d5

File tree

13 files changed

+15
-16
lines changed

13 files changed

+15
-16
lines changed

common/pom.xml

Lines changed: 1 addition & 1 deletion
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.8.0-SNAPSHOT</version>
29+
<version>0.9.0-SNAPSHOT</version>
3030
<relativePath>../pom.xml</relativePath>
3131
</parent>
3232

dev/diffs/3.4.3.diff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ index d3544881af1..2860f13daf9 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.8.0-SNAPSHOT</comet.version>
10+
+ <comet.version>0.9.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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ index 8dc47f391f9..94cd1cee609 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.8.0-SNAPSHOT</comet.version>
10+
+ <comet.version>0.9.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.5.diff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ index 9b009c3a42a..8d933af9777 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.8.0-SNAPSHOT</comet.version>
10+
+ <comet.version>0.9.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

Lines changed: 1 addition & 1 deletion
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.8.0-SNAPSHOT</comet.version>
10+
+ <comet.version>0.9.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.

dev/release/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ Create a PR against the main branch to prepare for developing the next release:
6060
- Update the Rust crate version to `0.2.0`.
6161
- Update the Maven version to `0.2.0-SNAPSHOT` (both in the `pom.xml` files and also in the diff files
6262
under `dev/diffs`).
63-
- Update the CI scripts under the `.github` directory.
6463

6564
### Generate the Change Log
6665

docs/source/contributor-guide/debugging.md

Lines changed: 1 addition & 1 deletion
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.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
133+
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
134134
```
135135

136136
Get the expanded exception details

docs/source/user-guide/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ See the [Comet Kubernetes Guide](kubernetes.md) guide.
8585
Make sure `SPARK_HOME` points to the same Spark version as Comet was built for.
8686

8787
```shell
88-
export COMET_JAR=spark/target/comet-spark-spark3.5_2.12-0.8.0-SNAPSHOT.jar
88+
export COMET_JAR=spark/target/comet-spark-spark3.5_2.12-0.9.0-SNAPSHOT.jar
8989

9090
$SPARK_HOME/bin/spark-shell \
9191
--jars $COMET_JAR \
@@ -141,7 +141,7 @@ explicitly contain Comet otherwise Spark may use a different class-loader for th
141141
components which will then fail at runtime. For example:
142142

143143
```
144-
--driver-class-path spark/target/comet-spark-spark3.5_2.12-0.8.0-SNAPSHOT.jar
144+
--driver-class-path spark/target/comet-spark-spark3.5_2.12-0.9.0-SNAPSHOT.jar
145145
```
146146

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

fuzz-testing/pom.xml

Lines changed: 1 addition & 1 deletion
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.8.0-SNAPSHOT</version>
28+
<version>0.9.0-SNAPSHOT</version>
2929
<relativePath>../pom.xml</relativePath>
3030
</parent>
3131

native/Cargo.toml

Lines changed: 3 additions & 3 deletions
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.8.0"
24+
version = "0.9.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 = "55.0.0", default-features = false, features = ["experimental"] }
4141
datafusion = { git = "https://github.com/apache/datafusion", rev = "47.0.0", default-features = false, features = ["unicode_expressions", "crypto_expressions", "nested_expressions", "parquet"] }
42-
datafusion-comet-spark-expr = { path = "spark-expr", version = "0.8.0" }
43-
datafusion-comet-proto = { path = "proto", version = "0.8.0" }
42+
datafusion-comet-spark-expr = { path = "spark-expr", version = "0.9.0" }
43+
datafusion-comet-proto = { path = "proto", version = "0.9.0" }
4444
chrono = { version = "0.4", default-features = false, features = ["clock"] }
4545
chrono-tz = { version = "0.8" }
4646
futures = "0.3.28"

0 commit comments

Comments
 (0)