From 5372952ed5ec9467183f008489bd646d7420c8d6 Mon Sep 17 00:00:00 2001 From: Enrico Minack Date: Thu, 14 Jul 2022 10:28:24 +0100 Subject: [PATCH] Releasing 0.9.0 --- CHANGELOG.md | 5 +++++ README.md | 12 ++++++------ examples/scala/pom.xml | 2 +- pom.xml | 2 +- 4 files changed, 13 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 031f7a65..7f1c7493 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## [0.9.0] - 2022-07-14 + +### Changed +- Moved to shaded Java Dgraph client (uk.co.gresearch.dgraph:dgraph4j-shaded:21.12.0-0). + ## [0.8.0] - 2022-01-19 ### Changed diff --git a/README.md b/README.md index f6d49c41..a143b9cd 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ The connector has the following known limitations: The Spark Dgraph Connector is available for Spark 3.0, Spark 3.1, Spark 3.2 and Spark 3.3, all with Scala 2.12. Use Maven artifact ID `spark-dgraph-connector_2.12`. The Spark version is part of the package version, -i.e. 0.8.0-3.0, 0.8.0-3.1, 0.8.0-3.2 and 0.8.0-3.3, respectively. +i.e. 0.9.0-3.0, 0.9.0-3.1, 0.9.0-3.2 and 0.9.0-3.3, respectively. Minor versions are kept in sync between those packages, such that identical minor versions contain identical feature sets (where supported by the respective Spark version). @@ -91,7 +91,7 @@ such that identical minor versions contain identical feature sets Add this line to your `build.sbt` file to use the latest version for Spark 3.2: ```sbt -libraryDependencies += "uk.co.gresearch.spark" %% "spark-dgraph-connector" % "0.8.0-3.2" +libraryDependencies += "uk.co.gresearch.spark" %% "spark-dgraph-connector" % "0.9.0-3.2" ``` ### Maven @@ -102,7 +102,7 @@ Add this dependency to your `pom.xml` file to use the latest version: uk.co.gresearch.spark spark-dgraph-connector_2.12 - 0.8.0-3.2 + 0.9.0-3.2 ``` @@ -111,7 +111,7 @@ Add this dependency to your `pom.xml` file to use the latest version: Launch the Scala Spark REPL (Spark ≥3.0.0) with the Spark Dgraph Connector dependency (version ≥0.5.0) as follows: ```shell script -spark-shell --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.8.0-3.2 +spark-shell --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.9.0-3.2 ``` ### PySpark Shell and Python script @@ -119,13 +119,13 @@ spark-shell --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.8.0-3 Launch the Python Spark REPL (pyspark ≥3.0.0) with the Spark Dgraph Connector dependency (version ≥0.5.0) as follows: ```shell script -pyspark --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.8.0-3.2 +pyspark --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.9.0-3.2 ``` Run your Python scripts that use PySpark (pyspark ≥3.0.0) and the Spark Dgraph Connector (version ≥0.5.0) via `spark-submit`: ```shell script -spark-submit --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.8.0-3.2 [script.py] +spark-submit --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.9.0-3.2 [script.py] ``` ## Examples diff --git a/examples/scala/pom.xml b/examples/scala/pom.xml index a3c5b4c6..03b9788b 100644 --- a/examples/scala/pom.xml +++ b/examples/scala/pom.xml @@ -3,7 +3,7 @@ uk.co.gresearch.spark spark-dgraph-connector-examples_2.12 - 0.9.0-3.2-SNAPSHOT + 0.9.0-3.2 Spark Dgraph Connector Example diff --git a/pom.xml b/pom.xml index 6b88470f..0ac9200e 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 uk.co.gresearch.spark spark-dgraph-connector_2.12 - 0.9.0-3.2-SNAPSHOT + 0.9.0-3.2 Spark Dgraph Connector A Spark connector for Dgraph databases 2020