From cc2d1071f46eed80d797e4e367f2f79fdba949ce Mon Sep 17 00:00:00 2001 From: osopardo1 Date: Thu, 22 Dec 2022 16:04:39 +0100 Subject: [PATCH 1/2] Change documentation to use v0.3.1 and change major version on build.sbt --- README.md | 13 ++++++------- build.sbt | 2 +- docs/Quickstart.md | 2 +- 3 files changed, 8 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index d728dae6d..f62ef81f8 100644 --- a/README.md +++ b/README.md @@ -91,10 +91,9 @@ export SPARK_HOME=$PWD/spark-3.1.1-bin-hadoop3.2 ```bash $SPARK_HOME/bin/spark-shell \ ---repositories https://s01.oss.sonatype.org/content/repositories/snapshots \ --conf spark.sql.extensions=io.qbeast.spark.internal.QbeastSparkSessionExtension \ --conf spark.sql.catalog.spark_catalog=io.qbeast.spark.internal.sources.catalog.QbeastCatalog \ ---packages io.qbeast:qbeast-spark_2.12:0.3.0-SNAPSHOT,io.delta:delta-core_2.12:1.2.0 +--packages io.qbeast:qbeast-spark_2.12:0.3.1,io.delta:delta-core_2.12:1.2.0 ``` ### 2. Indexing a dataset @@ -174,11 +173,11 @@ qbeastTable.analyze() Go to [QbeastTable documentation](./docs/QbeastTable.md) for more detailed information. # Dependencies and Version Compatibility -| Version | Spark | Hadoop | Delta Lake | -|------------|:-----:|:------:|:----------:| -| 0.1.0 | 3.0.0 | 3.2.0 | 0.8.0 | -| 0.2.0 | 3.1.x | 3.2.0 | 1.0.0 | -| 0.3.0 | 3.2.x | 3.3.x | 1.2.x | +| Version | Spark | Hadoop | Delta Lake | +|---------|:-----:|:------:|:----------:| +| 0.1.0 | 3.0.0 | 3.2.0 | 0.8.0 | +| 0.2.0 | 3.1.x | 3.2.0 | 1.0.0 | +| 0.3.1 | 3.2.x | 3.3.x | 1.2.x | Check [here](https://docs.delta.io/latest/releases.html) for **Delta Lake** and **Apache Spark** version compatibility. diff --git a/build.sbt b/build.sbt index 656c4eda7..4e01471b6 100644 --- a/build.sbt +++ b/build.sbt @@ -1,7 +1,7 @@ import Dependencies._ import xerial.sbt.Sonatype._ -val mainVersion = "0.3.0" +val mainVersion = "0.4.0-alpha" lazy val qbeastCore = (project in file("core")) .settings( diff --git a/docs/Quickstart.md b/docs/Quickstart.md index 73b3ea92a..b6de140fc 100644 --- a/docs/Quickstart.md +++ b/docs/Quickstart.md @@ -17,7 +17,7 @@ Inside the project folder, launch a spark-shell with the required **dependencies $SPARK_HOME/bin/spark-shell \ --conf spark.sql.extensions=io.qbeast.spark.internal.QbeastSparkSessionExtension \ --conf spark.sql.catalog.spark_catalog=io.qbeast.spark.internal.sources.catalog.QbeastCatalog \ ---packages io.qbeast:qbeast-spark_2.12:0.3.0,io.delta:delta-core_2.12:1.2.0 +--packages io.qbeast:qbeast-spark_2.12:0.3.1,io.delta:delta-core_2.12:1.2.0 ``` As an **_extra configuration_**, you can also change two global parameters of the index: From 7e2fa85b8af15a6b59ff90ce18f1d98ff4ccf74c Mon Sep 17 00:00:00 2001 From: osopardo1 Date: Fri, 23 Dec 2022 10:07:04 +0100 Subject: [PATCH 2/2] Revert version --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 4e01471b6..656c4eda7 100644 --- a/build.sbt +++ b/build.sbt @@ -1,7 +1,7 @@ import Dependencies._ import xerial.sbt.Sonatype._ -val mainVersion = "0.4.0-alpha" +val mainVersion = "0.3.0" lazy val qbeastCore = (project in file("core")) .settings(