From 27438599b3c42001246766c824116ce1c9c86b2d Mon Sep 17 00:00:00 2001 From: kbuilder Date: Tue, 11 Jun 2024 08:32:18 -0700 Subject: [PATCH] Release 0.1.1. --- CHANGES.md | 2 +- README.md | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 73fa325..e50ce19 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,6 @@ # Release Notes -## Next +## 0.1.1 - 2024-06-11 * PR #10: Create a new profile for the release diff --git a/README.md b/README.md index 7d3b8a0..185bfef 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ You can access the connector in two different ways: In Java and Scala applications, you can use different dependency management tools (e.g., Maven, sbt, or Gradle) to access the connector `com.google.cloud.spark.bigtable:spark-bigtable_2.12:`( -current `` is `0.1.0`) and package it inside your application JAR using +current `` is `0.1.1`) and package it inside your application JAR using libraries such as Maven Shade Plugin. For PySpark applications, you can use the `--jars` flag to pass the GCS address of the connector when submitting it. @@ -28,14 +28,14 @@ For Maven, you can add the following snippet to your `pom.xml` file: com.google.cloud.spark.bigtable spark-bigtable_2.12 - 0.1.0 + 0.1.1 ``` For sbt, you can add the following to your `build.sbt` file: ``` -libraryDependencies += "com.google.cloud.spark.bigtable" % "spark-bigtable_2.12" % "0.1.0" +libraryDependencies += "com.google.cloud.spark.bigtable" % "spark-bigtable_2.12" % "0.1.1" ``` Finally, you can add the following to your `build.gradle` file when using @@ -43,7 +43,7 @@ Gradle: ``` dependencies { -implementation group: 'com.google.cloud.bigtable', name: 'spark-bigtable_2.12', version: '0.1.0' +implementation group: 'com.google.cloud.bigtable', name: 'spark-bigtable_2.12', version: '0.1.1' } ```