Skip to content

Commit b00a6ec

Browse files
committed
Prepare for release 0.22.0
Signed-off-by: Michael Robinson <[email protected]>
1 parent 497081d commit b00a6ec

File tree

9 files changed

+2331
-725
lines changed

9 files changed

+2331
-725
lines changed

chart/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ name: marquez
2929
sources:
3030
- https://github.com/MarquezProject/marquez
3131
- https://marquezproject.github.io/marquez/
32-
version: 0.21.10
32+
version: 0.22.0

chart/values.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ marquez:
1717
image:
1818
registry: docker.io
1919
repository: marquezproject/marquez
20-
tag: 0.21.0
20+
tag: 0.22.0
2121
pullPolicy: IfNotPresent
2222
## Name of the existing secret containing credentials for the Marquez installation.
2323
## When this is specified, it will take precedence over the values configured in the 'db' section.
@@ -75,7 +75,7 @@ web:
7575
image:
7676
registry: docker.io
7777
repository: marquezproject/marquez-web
78-
tag: 0.21.0
78+
tag: 0.22.0
7979
pullPolicy: IfNotPresent
8080
## Marquez website will run on this port
8181
##
@@ -107,7 +107,7 @@ postgresql:
107107
## @param image.tag PostgreSQL image tag (immutable tags are recommended)
108108
##
109109
image:
110-
tag: 12.1.0
110+
tag: 0.22.0
111111
## Authentication parameters
112112
## ref: https://github.com/bitnami/bitnami-docker-postgresql/blob/master/README.md#setting-the-root-password-on-first-run
113113
## ref: https://github.com/bitnami/bitnami-docker-postgresql/blob/master/README.md#creating-a-database-on-first-run

clients/java/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ Maven:
1010
<dependency>
1111
<groupId>io.github.marquezproject</groupId>
1212
<artifactId>marquez-java</artifactId>
13-
<version>0.21.0</version>
13+
<version>0.22.0</version>
1414
</dependency>
1515
```
1616

1717
or Gradle:
1818

1919
```groovy
20-
implementation 'io.github.marquezproject:marquez-java:0.21.0
20+
implementation 'io.github.marquezproject:marquez-java:0.22.0
2121
```
2222

2323
## Usage

clients/python/marquez_client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# -*- coding: utf-8 -*-
1414

1515
__author__ = """Marquez Project"""
16-
__version__ = "0.21.1"
16+
__version__ = "0.22.0"
1717

1818
from marquez_client.client import MarquezClient # noqa: F401
1919
from marquez_client.clients import Clients # noqa: F401

clients/python/setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.21.1
2+
current_version = 0.22.0
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?P<rc>.*)

clients/python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
setup(
2525
name="marquez-python",
26-
version="0.21.1",
26+
version="0.22.0",
2727
description="Marquez Python Client",
2828
long_description=readme,
2929
long_description_content_type="text/markdown",

docs/openapi.html

Lines changed: 2320 additions & 714 deletions
Large diffs are not rendered by default.

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ org.gradle.jvmargs=--add-exports jdk.compiler/com.sun.tools.javac.api=ALL-UNNAME
77
--add-exports jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED \
88
--add-exports jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED
99

10-
version=0.21.1-SNAPSHOT
10+
version=0.22.0

spec/openapi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
openapi: 3.0.2
44
info:
55
title: Marquez
6-
version: 0.21.1-SNAPSHOT
6+
version: 0.22.0
77
description: Marquez is an open source **metadata service** for the **collection**, **aggregation**,
88
and **visualization** of a data ecosystem's metadata.
99
license:

0 commit comments

Comments
 (0)