Skip to content

Commit d36e8d7

Browse files
authored
chore: Start 0.6.0 development (#1286)
* start 0.6.0 development * update some docs * Revert a change * update CI
1 parent 9c1f0ee commit d36e8d7

File tree

11 files changed

+16
-16
lines changed

11 files changed

+16
-16
lines changed

.github/workflows/spark_sql_test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
with:
7272
spark-version: ${{ matrix.spark-version.full }}
7373
spark-short-version: ${{ matrix.spark-version.short }}
74-
comet-version: '0.5.0-SNAPSHOT' # TODO: get this from pom.xml
74+
comet-version: '0.6.0-SNAPSHOT' # TODO: get this from pom.xml
7575
- name: Run Spark tests
7676
run: |
7777
cd apache-spark

.github/workflows/spark_sql_test_ansi.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
with:
7070
spark-version: ${{ matrix.spark-version.full }}
7171
spark-short-version: ${{ matrix.spark-version.short }}
72-
comet-version: '0.5.0-SNAPSHOT' # TODO: get this from pom.xml
72+
comet-version: '0.6.0-SNAPSHOT' # TODO: get this from pom.xml
7373
- name: Run Spark tests
7474
run: |
7575
cd apache-spark

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.5.0-SNAPSHOT</version>
29+
<version>0.6.0-SNAPSHOT</version>
3030
<relativePath>../pom.xml</relativePath>
3131
</parent>
3232

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.5.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.6.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.5.0-SNAPSHOT.jar
77+
export COMET_JAR=spark/target/comet-spark-spark3.4_2.12-0.6.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.5.0-SNAPSHOT.jar
133+
--driver-class-path spark/target/comet-spark-spark3.4_2.12-0.6.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.5.0-SNAPSHOT</version>
28+
<version>0.6.0-SNAPSHOT</version>
2929
<relativePath>../pom.xml</relativePath>
3030
</parent>
3131

native/Cargo.lock

+3-3
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
@@ -20,7 +20,7 @@ members = ["core", "spark-expr", "proto"]
2020
resolver = "2"
2121

2222
[workspace.package]
23-
version = "0.5.0"
23+
version = "0.6.0"
2424
homepage = "https://datafusion.apache.org/comet"
2525
repository = "https://github.com/apache/datafusion-comet"
2626
authors = ["Apache DataFusion <[email protected]>"]
@@ -48,8 +48,8 @@ datafusion-expr-common = { version = "44.0.0", default-features = false }
4848
datafusion-execution = { version = "44.0.0", default-features = false }
4949
datafusion-physical-plan = { version = "44.0.0", default-features = false }
5050
datafusion-physical-expr = { version = "44.0.0", default-features = false }
51-
datafusion-comet-spark-expr = { path = "spark-expr", version = "0.5.0" }
52-
datafusion-comet-proto = { path = "proto", version = "0.5.0" }
51+
datafusion-comet-spark-expr = { path = "spark-expr", version = "0.6.0" }
52+
datafusion-comet-proto = { path = "proto", version = "0.6.0" }
5353
chrono = { version = "0.4", default-features = false, features = ["clock"] }
5454
chrono-tz = { version = "0.8" }
5555
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.5.0-SNAPSHOT</version>
33+
<version>0.6.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.5.0-SNAPSHOT</version>
29+
<version>0.6.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.5.0-SNAPSHOT</version>
29+
<version>0.6.0-SNAPSHOT</version>
3030
<relativePath>../pom.xml</relativePath>
3131
</parent>
3232

0 commit comments

Comments
 (0)