Skip to content

Commit

Permalink
Release 0.1.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
kokoro-team committed Jun 11, 2024
1 parent 31445b1 commit 2743859
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 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.1.1 - 2024-06-11

* PR #10: Create a new profile for the release

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.0`) and package it inside your application JAR using
current `<version>` 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.

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.0</version>
<version>0.1.1</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.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
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'
}
```

Expand Down

0 comments on commit 2743859

Please sign in to comment.