Skip to content

Commit

Permalink
Merge pull request #30 from rkaregar/karegar-add-version-flag
Browse files Browse the repository at this point in the history
chore: add a next_version_flag.
  • Loading branch information
rkaregar authored Jun 10, 2024
2 parents 7a75b67 + 5896c59 commit 31445b1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
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>
<version>0.1.1</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>
<version>0.1.1</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>
<version>0.1.1</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>
<version>0.1.1</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>
<version>0.1.1</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>
<version>0.1.1</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"
val CONNECTOR_VERSION = "0.1.1" // ${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 31445b1

Please sign in to comment.