Skip to content

Commit 3b1a83e

Browse files
author
kbuilder user
committed
Release 0.7.2.
1 parent 15d63d5 commit 3b1a83e

File tree

8 files changed

+18
-18
lines changed

8 files changed

+18
-18
lines changed

CHANGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release Notes
22

3-
## Next
3+
## 0.7.2 - 2025-10-20
44

55
* PR #97: fix: set max cell version to 1 for reads from dataframe
66

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ In Java and Scala applications, you can use different dependency management
2020
tools (e.g., Maven, sbt, or Gradle) to access the
2121
connector `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
2424
using libraries such as Maven Shade Plugin. For PySpark applications, you can
2525
use the `--jars` flag to pass the GCS address of the connector when submitting
2626
it.
@@ -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

4848
For 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

6060
Finally, you can add the following to your `build.gradle` file when using
@@ -63,14 +63,14 @@ Gradle:
6363
```
6464
// for scala 2.13
6565
dependencies {
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
7272
dependencies {
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

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<groupId>com.google.cloud.spark.bigtable</groupId>
2222
<artifactId>spark-bigtable-connector</artifactId>
2323
<packaging>pom</packaging>
24-
<version>0.7.1</version> <!-- ${NEXT_VERSION_FLAG} -->
24+
<version>0.7.2</version> <!-- ${NEXT_VERSION_FLAG} -->
2525
<name>Spark Bigtable Connector Build Parent</name>
2626
<description>Parent project for all the Spark Bigtable Connector artifacts</description>
2727
<url>https://github.com/GoogleCloudDataproc/spark-bigtable-connector</url>

spark-bigtable-core-it/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@
2121
<parent>
2222
<groupId>com.google.cloud.spark.bigtable</groupId>
2323
<artifactId>spark-bigtable-connector</artifactId>
24-
<version>0.7.1</version> <!-- ${NEXT_VERSION_FLAG} -->
24+
<version>0.7.2</version> <!-- ${NEXT_VERSION_FLAG} -->
2525
<relativePath>../</relativePath>
2626
</parent>
2727

2828
<groupId>com.google.cloud.spark.bigtable</groupId>
2929
<artifactId>spark-bigtable-core-it</artifactId>
3030
<name>Google Bigtable - Spark Connector Integration Tests</name>
31-
<version>0.7.1</version> <!-- ${NEXT_VERSION_FLAG} -->
31+
<version>0.7.2</version> <!-- ${NEXT_VERSION_FLAG} -->
3232

3333
<dependencies>
3434
<dependency>
@@ -52,7 +52,7 @@
5252
<dependency>
5353
<groupId>com.google.cloud.spark.bigtable</groupId>
5454
<artifactId>${connector.artifact.id}</artifactId>
55-
<version>0.7.1</version> <!-- ${NEXT_VERSION_FLAG} -->
55+
<version>0.7.2</version> <!-- ${NEXT_VERSION_FLAG} -->
5656
</dependency>
5757

5858
<dependency>

spark-bigtable-core/src/main/scala/com/google/cloud/spark/bigtable/BigtableDefaultSource.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import org.apache.spark.sql.{DataFrame, SQLContext, SaveMode, Row => SparkRow}
3232
import org.apache.yetus.audience.InterfaceAudience
3333

3434
object UserAgentInformation {
35-
val CONNECTOR_VERSION = "0.7.1" // ${NEXT_VERSION_FLAG}
35+
val CONNECTOR_VERSION = "0.7.2" // ${NEXT_VERSION_FLAG}
3636
val DATA_SOURCE_VERSION = "V1"
3737
val DATAFRAME_TEXT = "DF/" + DATA_SOURCE_VERSION
3838
val RDD_TEXT = "RDD/"

spark-bigtable-core/src/main/scala/com/google/cloud/spark/bigtable/datasources/config/client/UserAgentConfig.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import com.google.common.collect.ImmutableMap
77
import io.grpc.internal.GrpcUtil.USER_AGENT_KEY
88

99
object UserAgentConfig {
10-
private val CONNECTOR_VERSION = "0.7.1" // ${NEXT_VERSION_FLAG}
10+
private val CONNECTOR_VERSION = "0.7.2" // ${NEXT_VERSION_FLAG}
1111
private val CONNECTOR_ID = "spark-bigtable"
1212

1313
def apply(): UserAgentConfig = new UserAgentConfig(

spark-bigtable_2.12/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@
2121
<parent>
2222
<groupId>com.google.cloud.spark.bigtable</groupId>
2323
<artifactId>spark-bigtable-connector</artifactId>
24-
<version>0.7.1</version> <!-- ${NEXT_VERSION_FLAG} -->
24+
<version>0.7.2</version> <!-- ${NEXT_VERSION_FLAG} -->
2525
<relativePath>../pom.xml</relativePath>
2626
</parent>
2727

2828
<groupId>com.google.cloud.spark.bigtable</groupId>
2929
<artifactId>spark-bigtable_2.12</artifactId>
3030
<name>Google Bigtable - Apache Spark Connector</name>
31-
<version>0.7.1</version> <!-- ${NEXT_VERSION_FLAG} -->
31+
<version>0.7.2</version> <!-- ${NEXT_VERSION_FLAG} -->
3232

3333
<properties>
3434
<scala.version>2.12.18</scala.version>

spark-bigtable_2.13/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@
2121
<parent>
2222
<groupId>com.google.cloud.spark.bigtable</groupId>
2323
<artifactId>spark-bigtable-connector</artifactId>
24-
<version>0.7.1</version> <!-- ${NEXT_VERSION_FLAG} -->
24+
<version>0.7.2</version> <!-- ${NEXT_VERSION_FLAG} -->
2525
<relativePath>../pom.xml</relativePath>
2626
</parent>
2727

2828
<groupId>com.google.cloud.spark.bigtable</groupId>
2929
<artifactId>spark-bigtable_2.13</artifactId>
3030
<name>Google Bigtable - Apache Spark Connector for Scala 2.13</name>
31-
<version>0.7.1</version> <!-- ${NEXT_VERSION_FLAG} -->
31+
<version>0.7.2</version> <!-- ${NEXT_VERSION_FLAG} -->
3232

3333
<properties>
3434
<scala.version>2.13.14</scala.version>

0 commit comments

Comments
 (0)