Skip to content

Commit

Permalink
Prepare for release 0.28.0
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Robinson <[email protected]>
  • Loading branch information
merobi-hub committed Jun 12, 2023
1 parent d91cc65 commit 3441c92
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions client/java/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ Maven:
<dependency>
<groupId>io.openlineage</groupId>
<artifactId>openlineage-java</artifactId>
<version>0.27.2</version>
<version>0.28.0</version>
</dependency>
```

or Gradle:

```groovy
implementation 'io.openlineage:openlineage-java:0.27.2'
implementation 'io.openlineage:openlineage-java:0.28.0'
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion client/java/gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=0.28.0-SNAPSHOT
version=0.28.0
2 changes: 1 addition & 1 deletion integration/flink/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Maven:
<dependency>
<groupId>io.openlineage</groupId>
<artifactId>openlineage-flink</artifactId>
<version>0.27.2</version>
<version>0.28.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion integration/flink/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
jdk8.build=true
version=0.28.0-SNAPSHOT
version=0.28.0
flink.version=1.15.1
org.gradle.jvmargs=-Xmx1G
8 changes: 4 additions & 4 deletions integration/spark/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ Maven:
<dependency>
<groupId>io.openlineage</groupId>
<artifactId>openlineage-spark</artifactId>
<version>0.27.2</version>
<version>0.28.0</version>
</dependency>
```

or Gradle:

```groovy
implementation 'io.openlineage:openlineage-spark:0.27.2'
implementation 'io.openlineage:openlineage-spark:0.28.0'
```

## Getting started
Expand Down Expand Up @@ -50,7 +50,7 @@ from pyspark.sql import SparkSession

spark = (SparkSession.builder.master('local')
.appName('sample_spark')
.config('spark.jars.packages', 'io.openlineage:openlineage-spark:0.27.2')
.config('spark.jars.packages', 'io.openlineage:openlineage-spark:0.28.0')
.config('spark.extraListeners', 'io.openlineage.spark.agent.OpenLineageSparkListener')
.config('spark.openlineage.transport.url', 'http://{openlineage.client.host}/api/v1/namespaces/spark_integration/')
.getOrCreate())
Expand All @@ -66,7 +66,7 @@ container):
```python
from pyspark.sql import SparkSession

file = "/home/jovyan/openlineage/libs/openlineage-spark-0.27.2.jar"
file = "/home/jovyan/openlineage/libs/openlineage-spark-0.28.0.jar"

spark = (SparkSession.builder.master('local').appName('rdd_to_dataframe')
.config('spark.jars', file)
Expand Down
2 changes: 1 addition & 1 deletion integration/spark/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
jdk8.build=true
version=0.28.0-SNAPSHOT
version=0.28.0
spark.version=3.3.1
org.gradle.jvmargs=-Xmx1G
2 changes: 1 addition & 1 deletion integration/sql/iface-java/gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=0.28.0-SNAPSHOT
version=0.28.0
2 changes: 1 addition & 1 deletion proxy/backend/gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=0.28.0-SNAPSHOT
version=0.28.0

0 comments on commit 3441c92

Please sign in to comment.