@@ -20,7 +20,7 @@ In Java and Scala applications, you can use different dependency management
2020tools (e.g., Maven, sbt, or Gradle) to access the
2121connector ` com.google.cloud.spark.bigtable:spark-bigtable_2.13:<version> ` or
2222` com.google.cloud.spark.bigtable:spark-bigtable_2.12:<version> ` (current
23- ` <version> ` is ` 0.7.1 ` ) and package it inside your application JAR
23+ ` <version> ` is ` 0.7.2 ` ) and package it inside your application JAR
2424using libraries such as Maven Shade Plugin. For PySpark applications, you can
2525use the ` --jars ` flag to pass the GCS address of the connector when submitting
2626it.
@@ -32,7 +32,7 @@ For Maven, you can add the following snippet to your `pom.xml` file:
3232<dependency >
3333 <groupId >com.google.cloud.spark.bigtable</groupId >
3434 <artifactId >spark-bigtable_2.13</artifactId >
35- <version >0.7.1 </version >
35+ <version >0.7.2 </version >
3636</dependency >
3737```
3838
@@ -41,20 +41,20 @@ For Maven, you can add the following snippet to your `pom.xml` file:
4141<dependency >
4242 <groupId >com.google.cloud.spark.bigtable</groupId >
4343 <artifactId >spark-bigtable_2.12</artifactId >
44- <version >0.7.1 </version >
44+ <version >0.7.2 </version >
4545</dependency >
4646```
4747
4848For sbt, you can add the following to your ` build.sbt ` file:
4949
5050```
5151// for scala 2.13
52- libraryDependencies += "com.google.cloud.spark.bigtable" % "spark-bigtable_2.13" % "0.7.1 "
52+ libraryDependencies += "com.google.cloud.spark.bigtable" % "spark-bigtable_2.13" % "0.7.2 "
5353```
5454
5555```
5656// for scala 2.12
57- libraryDependencies += "com.google.cloud.spark.bigtable" % "spark-bigtable_2.12" % "0.7.1 "
57+ libraryDependencies += "com.google.cloud.spark.bigtable" % "spark-bigtable_2.12" % "0.7.2 "
5858```
5959
6060Finally, you can add the following to your ` build.gradle ` file when using
@@ -63,14 +63,14 @@ Gradle:
6363```
6464// for scala 2.13
6565dependencies {
66- implementation group: 'com.google.cloud.bigtable', name: 'spark-bigtable_2.13', version: '0.7.1 '
66+ implementation group: 'com.google.cloud.bigtable', name: 'spark-bigtable_2.13', version: '0.7.2 '
6767}
6868```
6969
7070```
7171// for scala 2.12
7272dependencies {
73- implementation group: 'com.google.cloud.bigtable', name: 'spark-bigtable_2.12', version: '0.7.1 '
73+ implementation group: 'com.google.cloud.bigtable', name: 'spark-bigtable_2.12', version: '0.7.2 '
7474}
7575```
7676
0 commit comments