Skip to content

Commit 34eceac

Browse files
committed
version bump to 0.6.0
1 parent 9193df4 commit 34eceac

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ See [Our Features](https://dataflint.gitbook.io/dataflint-for-spark/overview/our
5858

5959
Install DataFlint via sbt:
6060
```sbt
61-
libraryDependencies += "io.dataflint" %% "spark" % "0.5.1"
61+
libraryDependencies += "io.dataflint" %% "spark" % "0.6.0"
6262
```
6363

6464
Then instruct spark to load the DataFlint plugin:
@@ -76,7 +76,7 @@ Add these 2 configs to your pyspark session builder:
7676
```python
7777
builder = pyspark.sql.SparkSession.builder
7878
...
79-
.config("spark.jars.packages", "io.dataflint:spark_2.12:0.5.1") \
79+
.config("spark.jars.packages", "io.dataflint:spark_2.12:0.6.0") \
8080
.config("spark.plugins", "io.dataflint.spark.SparkDataflintPlugin") \
8181
...
8282
```
@@ -87,14 +87,14 @@ Alternatively, install DataFlint with **no code change** as a spark ivy package
8787

8888
```bash
8989
spark-submit
90-
--packages io.dataflint:spark_2.12:0.5.1 \
90+
--packages io.dataflint:spark_2.12:0.6.0 \
9191
--conf spark.plugins=io.dataflint.spark.SparkDataflintPlugin \
9292
...
9393
```
9494

9595
### Additional installation options
9696

97-
* There is also support for scala 2.13, if your spark cluster is using scala 2.13 change package name to io.dataflint:spark_**2.13**:0.5.1
97+
* There is also support for scala 2.13, if your spark cluster is using scala 2.13 change package name to io.dataflint:spark_**2.13**:0.6.0
9898
* For more installation options, including for **python** and **k8s spark-operator**, see [Install on Spark docs](https://dataflint.gitbook.io/dataflint-for-spark/getting-started/install-on-spark)
9999
* For installing DataFlint in **spark history server** for observability on completed runs see [install on spark history server docs](https://dataflint.gitbook.io/dataflint-for-spark/getting-started/install-on-spark-history-server)
100100
* For installing DataFlint on **DataBricks** see [install on databricks docs](https://dataflint.gitbook.io/dataflint-for-spark/getting-started/install-on-databricks)

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

spark-plugin/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import xerial.sbt.Sonatype._
22
import sbtassembly.AssemblyPlugin.autoImport._
33

4-
lazy val versionNum: String = "0.5.1"
4+
lazy val versionNum: String = "0.6.0"
55
lazy val scala212 = "2.12.20"
66
lazy val scala213 = "2.13.16"
77
lazy val supportedScalaVersions = List(scala212, scala213)

spark-plugin/clean-and-setup.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ echo "1. Refresh your IntelliJ IDEA project (File -> Reload Gradle Project or si
3838
echo "2. If you still get conflicts, try: File -> Invalidate Caches and Restart"
3939
echo ""
4040
echo "📦 Fat JARs created:"
41-
echo "- Spark 3.x: pluginspark3/target/scala-2.12/dataflint-spark3_2.12-0.5.1-SNAPSHOT.jar"
42-
echo "- Spark 4.x: pluginspark4/target/scala-2.13/dataflint-spark4_2.13-0.5.1-SNAPSHOT.jar"
41+
echo "- Spark 3.x: pluginspark3/target/scala-2.12/dataflint-spark3_2.12-0.6.0-SNAPSHOT.jar"
42+
echo "- Spark 4.x: pluginspark4/target/scala-2.13/dataflint-spark4_2.13-0.6.0-SNAPSHOT.jar"
4343

spark-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dataflint-ui",
3-
"version": "0.5.1",
3+
"version": "0.6.0",
44
"homepage": "./",
55
"private": true,
66
"dependencies": {

0 commit comments

Comments
 (0)