Skip to content

Commit

Permalink
Prepare for release 0.16.0
Browse files Browse the repository at this point in the history
Signed-off-by: wslulciuc <[email protected]>
  • Loading branch information
wslulciuc committed Jul 2, 2021
1 parent 33fc14a commit 8435d9c
Show file tree
Hide file tree
Showing 24 changed files with 32 additions and 32 deletions.
2 changes: 1 addition & 1 deletion chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ name: marquez
sources:
- https://github.com/MarquezProject/marquez
- https://marquezproject.github.io/marquez/
version: 0.16.0-rc.1
version: 0.16.0
4 changes: 2 additions & 2 deletions chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ marquez:
image:
registry: docker.io
repository: marquezproject/marquez
tag: 0.16.0-rc.1
tag: 0.16.0
pullPolicy: IfNotPresent
## Name of the existing secret containing credentials for the Marquez installation.
## When this is specified, it will take precedence over the values configured in the 'db' section.
Expand Down Expand Up @@ -70,7 +70,7 @@ web:
image:
registry: docker.io
repository: marquezproject/marquez-web
tag: 0.16.0-rc.1
tag: 0.16.0
pullPolicy: IfNotPresent
## Marquez website will run on this port
##
Expand Down
4 changes: 2 additions & 2 deletions clients/java/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ Maven:
<dependency>
<groupId>io.github.marquezproject</groupId>
<artifactId>marquez-java</artifactId>
<version>0.16.0-rc.1</version>
<version>0.16.0</version>
</dependency>
```

or Gradle:

```groovy
implementation 'io.github.marquezproject:marquez-java:0.16.0-rc.1
implementation 'io.github.marquezproject:marquez-java:0.16.0
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion clients/python/marquez_client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# -*- coding: utf-8 -*-

__author__ = """Marquez Project"""
__version__ = "0.16.0rc1"
__version__ = "0.16.0"

from marquez_client.client import MarquezClient # noqa: F401
from marquez_client.client_wo import MarquezWriteOnlyClient # noqa: F401
Expand Down
2 changes: 1 addition & 1 deletion clients/python/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.16.0rc1
current_version = 0.16.0
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?P<rc>.*)
Expand Down
2 changes: 1 addition & 1 deletion clients/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

setup(
name="marquez-python",
version="0.16.0rc1",
version="0.16.0",
description="Marquez Python Client",
long_description=readme,
long_description_content_type="text/markdown",
Expand Down
4 changes: 2 additions & 2 deletions docs/openapi.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
org.gradle.internal.http.connectionTimeout=60000
org.gradle.internal.http.socketTimeout=60000

version=0.16.0-rc.2
version=0.16.0
2 changes: 1 addition & 1 deletion integrations/airflow/marquez_airflow/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# -*- coding: utf-8 -*-

__author__ = """Marquez Project"""
__version__ = "0.16.0rc1"
__version__ = "0.16.0"
__all__ = ["DAG"]

from marquez_airflow.dag import DAG
2 changes: 1 addition & 1 deletion integrations/airflow/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.16.0rc1
current_version = 0.16.0
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?P<rc>.*)
Expand Down
4 changes: 2 additions & 2 deletions integrations/airflow/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"attrs>=19.3",
"requests>=2.20.0",
"sqlparse>=0.3.1",
"marquez-integration-common==0.16.0rc1",
"marquez-integration-common==0.16.0",
]


Expand All @@ -49,7 +49,7 @@

setup(
name="marquez-airflow",
version="0.16.0rc1",
version="0.16.0",
description="Marquez integration with Airflow",
long_description=readme,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion integrations/common/marquez/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
# limitations under the License.

__author__ = """Marquez Project"""
__version__ = "0.16.0rc1"
__version__ = "0.16.0"
2 changes: 1 addition & 1 deletion integrations/common/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.16.0rc1
current_version = 0.16.0
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?P<rc>.*)
Expand Down
2 changes: 1 addition & 1 deletion integrations/common/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@

setup(
name="marquez-integration-common",
version="0.16.0rc1",
version="0.16.0",
description="Marquez common python library for integrations",
long_description=readme,
long_description_content_type="text/markdown",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from dbt.include import openlineage_bigquery

__author__ = """Marquez Project"""
__version__ = "0.16.0rc1"
__version__ = "0.16.0"

# Caution: this plugin is experimental. More information in README.md

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class RunMeta:


BQ_QUERY_JOB_SPLIT = '-----Query Job SQL Follows-----'
PRODUCER = "marquez-dbt-bigquery/0.16.0rc1"
PRODUCER = "marquez-dbt-bigquery/0.16.0"


class OpenLineageBigQueryConnectionManager(BigQueryConnectionManager):
Expand Down
2 changes: 1 addition & 1 deletion integrations/dbt/bigquery/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.16.0rc1
current_version = 0.16.0
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?P<rc>.*)
Expand Down
2 changes: 1 addition & 1 deletion integrations/dbt/bigquery/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@

setup(
name="marquez-dbt-bigquery",
version="0.16.0rc1",
version="0.16.0",
description="The Marquez BigQuery adapter plugin for dbt (data build tool)",
long_description=readme,
long_description_content_type="text/markdown",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from dbt.include import openlineage_snowflake

__author__ = """Marquez Project"""
__version__ = "0.16.0rc1"
__version__ = "0.16.0"

# Caution: this plugin is experimental. More information in README.md

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class RunMeta:


BQ_QUERY_JOB_SPLIT = '-----Query Job SQL Follows-----'
PRODUCER = "marquez-dbt-snowflake/0.16.0rc1"
PRODUCER = "marquez-dbt-snowflake/0.16.0"


class OpenLineageSnowflakeConnectionManager(SnowflakeConnectionManager):
Expand Down
2 changes: 1 addition & 1 deletion integrations/dbt/snowflake/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.16.0rc1
current_version = 0.16.0
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?P<rc>.*)
Expand Down
2 changes: 1 addition & 1 deletion integrations/dbt/snowflake/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@

setup(
name="marquez-dbt-snowflake",
version="0.16.0rc1",
version="0.16.0",
description="The Marquez Snowflake adapter plugin for dbt (data build tool)",
long_description=readme,
long_description_content_type="text/markdown",
Expand Down
10 changes: 5 additions & 5 deletions integrations/spark/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ Maven:
<dependency>
<groupId>io.github.marquezproject</groupId>
<artifactId>marquez-spark</artifactId>
<version>0.16.0-rc.1</version>
<version>0.16.0</version>
</dependency>
```

or Gradle:

```groovy
implementation 'io.github.marquezproject:marquez-spark:0.16.0-rc.1
implementation 'io.github.marquezproject:marquez-spark:0.16.0
```

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

spark = (SparkSession.builder.master('local')
.appName('sample_spark')
.config('spark.jars.packages', 'io.github.marquezproject:marquez-spark:0.16.0-rc.1
.config('spark.jars.packages', 'io.github.marquezproject:marquez-spark:0.16.0
.config('spark.extraListeners', 'marquez.spark.agent.SparkListener')
.config('openlineage.url', 'http://marquez:5000/api/v1/namespaces/spark_integration/')
.getOrCreate())
Expand Down Expand Up @@ -123,7 +123,7 @@ t1 = DataProcPySparkOperator(
job_name=job_name,
dataproc_pyspark_properties={
"spark.extraListeners": "marquez.spark.agent.SparkListener",
"spark.jars.packages": "io.github.marquezproject:marquez-spark:0.16.0-rc.1
"spark.jars.packages": "io.github.marquezproject:marquez-spark:0.16.0
"openlineage.url": f"{marquez_url}/api/v1/namespaces/{marquez_namespace}/jobs/dump_orders_to_gcs/runs/{{{{task_run_id(run_id, task)}}}}?api_key={api_key}"
},
dag=dag)
Expand Down Expand Up @@ -156,7 +156,7 @@ t1 = DataprocClusterCreateOperator(
init_actions_uris=['gs://dataproc-initialization-actions/cloud-sql-proxy/cloud-sql-proxy.sh'],
properties={
"spark.extraListeners": "marquez.spark.agent.SparkListener",
"spark.jars.packages": "io.github.marquezproject:marquez-spark:0.16.0-rc.1
"spark.jars.packages": "io.github.marquezproject:marquez-spark:0.16.0
"openlineage.url": "{marquez_url}/api/v1/namespaces/{marquez_namespace}/?api_key={api_key}"
},
dag=dag)
Expand Down
2 changes: 1 addition & 1 deletion spec/openapi.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
openapi: 3.0.2
info:
title: Marquez
version: 0.16.0-rc.1
version: 0.16.0
description: Marquez is an open source **metadata service** for the **collection**, **aggregation**,
and **visualization** of a data ecosystem's metadata.
license:
Expand Down

0 comments on commit 8435d9c

Please sign in to comment.