Skip to content

Commit

Permalink
Release 0.2.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
kokoro-team committed Jul 29, 2024
1 parent f961fa5 commit 9143a0b
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release Notes

## Next
## 0.2.0 - 2024-07-29

* PR #33: Add support for more primitive types, i.e., Int, Float, etc.

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:<version>`(
current `<version>` is `0.1.1`) and package it inside your application JAR using
current `<version>` is `0.2.0`) 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.

Expand All @@ -28,22 +28,22 @@ For Maven, you can add the following snippet to your `pom.xml` file:
<dependency>
<groupId>com.google.cloud.spark.bigtable</groupId>
<artifactId>spark-bigtable_2.12</artifactId>
<version>0.1.1</version>
<version>0.2.0</version>
</dependency>
```

For sbt, you can add the following to your `build.sbt` file:

```
libraryDependencies += "com.google.cloud.spark.bigtable" % "spark-bigtable_2.12" % "0.1.1"
libraryDependencies += "com.google.cloud.spark.bigtable" % "spark-bigtable_2.12" % "0.2.0"
```

Finally, you can add the following to your `build.gradle` file when using
Gradle:

```
dependencies {
implementation group: 'com.google.cloud.bigtable', name: 'spark-bigtable_2.12', version: '0.1.1'
implementation group: 'com.google.cloud.bigtable', name: 'spark-bigtable_2.12', version: '0.2.0'
}
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<groupId>com.google.cloud.spark.bigtable</groupId>
<artifactId>spark-bigtable-connector</artifactId>
<packaging>pom</packaging>
<version>0.1.1</version> <!-- ${NEXT_VERSION_FLAG} -->
<version>0.2.0</version> <!-- ${NEXT_VERSION_FLAG} -->
<name>Spark Bigtable Connector Build Parent</name>
<description>Parent project for all the Spark Bigtable Connector artifacts</description>
<url>https://github.com/GoogleCloudDataproc/spark-bigtable-connector</url>
Expand Down
6 changes: 3 additions & 3 deletions spark-bigtable_2.12-it/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@
<parent>
<groupId>com.google.cloud.spark.bigtable</groupId>
<artifactId>spark-bigtable-connector</artifactId>
<version>0.1.1</version> <!-- ${NEXT_VERSION_FLAG} -->
<version>0.2.0</version> <!-- ${NEXT_VERSION_FLAG} -->
<relativePath>../</relativePath>
</parent>

<groupId>com.google.cloud.spark.bigtable</groupId>
<artifactId>spark-bigtable_2.12-it</artifactId>
<name>Google Bigtable - Spark Connector Integration Tests</name>
<version>0.1.1</version> <!-- ${NEXT_VERSION_FLAG} -->
<version>0.2.0</version> <!-- ${NEXT_VERSION_FLAG} -->

<dependencies>
<dependency>
Expand All @@ -52,7 +52,7 @@
<dependency>
<groupId>com.google.cloud.spark.bigtable</groupId>
<artifactId>spark-bigtable_2.12</artifactId>
<version>0.1.1</version> <!-- ${NEXT_VERSION_FLAG} -->
<version>0.2.0</version> <!-- ${NEXT_VERSION_FLAG} -->
</dependency>

<dependency>
Expand Down
4 changes: 2 additions & 2 deletions spark-bigtable_2.12/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@
<parent>
<groupId>com.google.cloud.spark.bigtable</groupId>
<artifactId>spark-bigtable-connector</artifactId>
<version>0.1.1</version> <!-- ${NEXT_VERSION_FLAG} -->
<version>0.2.0</version> <!-- ${NEXT_VERSION_FLAG} -->
<relativePath>../</relativePath>
</parent>

<groupId>com.google.cloud.spark.bigtable</groupId>
<artifactId>spark-bigtable_2.12</artifactId>
<name>Google Bigtable - Apache Spark Connector</name>
<version>0.1.1</version> <!-- ${NEXT_VERSION_FLAG} -->
<version>0.2.0</version> <!-- ${NEXT_VERSION_FLAG} -->

<dependencies>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import org.apache.spark.sql.{DataFrame, SQLContext, SaveMode, Row => SparkRow}
import org.apache.yetus.audience.InterfaceAudience

object VersionInformation {
val CONNECTOR_VERSION = "0.1.1" // ${NEXT_VERSION_FLAG}
val CONNECTOR_VERSION = "0.2.0" // ${NEXT_VERSION_FLAG}
val DATA_SOURCE_VERSION = "V1"
val scalaVersion = util.Properties.versionNumberString
// This remains unset only in unit tests where sqlContext is null.
Expand Down

0 comments on commit 9143a0b

Please sign in to comment.