From 1516b4323a3af73bce2537fa88978524955b8919 Mon Sep 17 00:00:00 2001 From: semyonsinchenko Date: Sat, 19 Jul 2025 13:37:41 +0200 Subject: [PATCH] 0.9.2 release --- README.md | 16 ++++++++-------- docs/_config.yml | 2 +- python/README.md | 4 ++-- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 1b4c602a5..79574a6ce 100644 --- a/README.md +++ b/README.md @@ -30,19 +30,19 @@ GraphFrames scala core and Spark-Connect plugin are published in the Sonatype Ce # Interactive Scala/Java # For Spark 3.5.x, scala 2.12 -$ spark-shell --packages io.graphframes:graphframes-spark3_2.12:0.9.1 +$ spark-shell --packages io.graphframes:graphframes-spark3_2.12:0.9.2 # For Spark 3.5.x, scala 2.13 -$ spark-shell --packages io.graphframes:graphframes-spark3_2.13:0.9.1 +$ spark-shell --packages io.graphframes:graphframes-spark3_2.13:0.9.2 # For Spark 4.0.x -$ spark-shell --packages io.graphframes:graphframes-spark4_2.13:0.9.1 +$ spark-shell --packages io.graphframes:graphframes-spark4_2.13:0.9.2 # Interactive Python, Spark 3.5.x -$ pyspark --packages io.graphframes:graphframes-spark3_2.12:0.9.1 +$ pyspark --packages io.graphframes:graphframes-spark3_2.12:0.9.2 # Interactive Python, Spark 4.0.x -$ pyspark --packages io.graphframes:graphframes-spark4_2.13:0.9.1 +$ pyspark --packages io.graphframes:graphframes-spark4_2.13:0.9.2 ``` ### GraphFrames Python API @@ -62,7 +62,7 @@ To add GraphFrames to your spark connect server, you need to specify the plugin ```bash ./sbin/start-connect-server.sh \ --conf spark.connect.extensions.relation.classes=org.apache.spark.sql.graphframes.GraphFramesConnect \ - --packages io.graphframes.graphframes-connect-spark4_2.13:0.9.1 + --packages io.graphframes.graphframes-connect-spark4_2.13:0.9.2 --conf spark.checkpoint.dir=${CHECKPOINT_DIR} ``` @@ -212,14 +212,14 @@ Maven: io.graphframes graphframes-spark4_2.13 - 0.9.1 + 0.9.2 ``` SBT: ```sbt -libraryDependencies += "io.graphframes" %% "graphframes-spark4" % "0.9.1" +libraryDependencies += "io.graphframes" %% "graphframes-spark4" % "0.9.2" ``` **WARNING!** diff --git a/docs/_config.yml b/docs/_config.yml index 868f146b9..0975386b2 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -13,7 +13,7 @@ include: # These allow the documentation to be updated with newer releases # of Spark, Scala, and Mesos. -GRAPHFRAMES_VERSION: 0.9.1 +GRAPHFRAMES_VERSION: 0.9.2 #SCALA_BINARY_VERSION: "2.10" #SCALA_VERSION: "2.10.4" #MESOS_VERSION: 0.21.0 diff --git a/python/README.md b/python/README.md index e2f02cf55..093009719 100644 --- a/python/README.md +++ b/python/README.md @@ -27,10 +27,10 @@ You should use GraphFrames via the `--packages` argument to `pyspark` or `spark- ```bash # Interactive Python, Spark 3.5.x -$ pyspark --packages io.graphframes:graphframes-spark3_2.12:0.9.1 +$ pyspark --packages io.graphframes:graphframes-spark3_2.12:0.9.2 # Interactive Python, Spark 4.0.x -$ pyspark --packages io.graphframes:graphframes-spark4_2.13:0.9.1 +$ pyspark --packages io.graphframes:graphframes-spark4_2.13:0.9.2 ``` ## Documentation