Skip to content

Commit

Permalink
Set version for release 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
juhoautio-rovio committed Mar 28, 2023
1 parent 4e6322c commit 8ec70f3
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ Set the following spark conf:

```python
.conf("spark.jars.packages",
"com.rovio.ingest:rovio-ingest:1.0.2_spark_3.0.1") \
"com.rovio.ingest:rovio-ingest:1.0.3_spark_3.0.1") \
```

#### PySpark job example
Expand Down Expand Up @@ -206,14 +206,14 @@ A `Dataset[Row]` extension is provided to repartition the dataset for the `Druid
For an interactive spark session you can set the following spark conf:

```scala
("spark.jars.packages", "com.rovio.ingest:rovio-ingest:1.0.2_spark_3.0.1")
("spark.jars.packages", "com.rovio.ingest:rovio-ingest:1.0.3_spark_3.0.1")
```

To use a snapshot version:

```scala
("spark.jars.repositories", "https://s01.oss.sonatype.org/content/repositories/snapshots"),
("spark.jars.packages", "com.rovio.ingest:rovio-ingest:1.0.2_spark_3.0.1-SNAPSHOT")
("spark.jars.packages", "com.rovio.ingest:rovio-ingest:1.0.3_spark_3.0.1-SNAPSHOT")
```

```scala
Expand Down Expand Up @@ -249,7 +249,7 @@ Maven (for a full example, see [examples/rovio-ingest-maven-example](examples/ro
<dependency>
<groupId>com.rovio.ingest</groupId>
<artifactId>rovio-ingest</artifactId>
<version>1.0.2_spark_3.0.1</version>
<version>1.0.3_spark_3.0.1</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
Expand Down
4 changes: 2 additions & 2 deletions examples/rovio-ingest-maven-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@
<dependency>
<groupId>com.rovio.ingest</groupId>
<artifactId>rovio-ingest</artifactId>
<version>1.0.2_spark_3.0.1</version>
<version>1.0.3_spark_3.0.1</version>
<!-- NOTE: This requires the sonatype snapshot repository. See <repositories>.
<version>1.0.2_spark_3.0.1-SNAPSHOT</version>
<version>1.0.3_spark_3.0.1-SNAPSHOT</version>
-->
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

<groupId>com.rovio.ingest</groupId>
<artifactId>rovio-ingest</artifactId>
<version>1.0.3_spark_3.0.1-SNAPSHOT</version>
<version>1.0.3_spark_3.0.1</version>
<packaging>jar</packaging>
<name>rovio-ingest</name>
<description>An implementation of the DatasourceV2 interface of Apache Spark™ for writing Spark Datasets to Apache Druid™</description>
Expand Down
2 changes: 1 addition & 1 deletion python/notebooks/druid_ingestion_test.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@
" # alternative if using a snapshot version\n",
"# \"spark.jars.repositories\": \"https://s01.oss.sonatype.org/content/repositories/snapshots\",\n",
"# \"spark.jars.packages\": \"com.rovio.ingest:rovio-ingest:1.0.3_spark_3.0.1-SNAPSHOT\"\n",
" \"spark.jars.packages\": \"com.rovio.ingest:rovio-ingest:1.0.2_spark_3.0.1\"\n",
" \"spark.jars.packages\": \"com.rovio.ingest:rovio-ingest:1.0.3_spark_3.0.1\"\n",
" }\n",
"}\n",
"\n",
Expand Down

0 comments on commit 8ec70f3

Please sign in to comment.