Skip to content

Commit 9aec566

Browse files
committed
Prepare for release 0.18.0
Signed-off-by: wslulciuc <[email protected]>
1 parent b3aa3ef commit 9aec566

File tree

15 files changed

+41
-41
lines changed

15 files changed

+41
-41
lines changed

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
API_PORT=5000
22
API_ADMIN_PORT=5001
33
WEB_PORT=3000
4-
TAG=0.17.0
4+
TAG=0.18.0

chart/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ name: marquez
2525
sources:
2626
- https://github.com/MarquezProject/marquez
2727
- https://marquezproject.github.io/marquez/
28-
version: 0.17.1
28+
version: 0.18.0

chart/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ marquez:
1616
image:
1717
registry: docker.io
1818
repository: marquezproject/marquez
19-
tag: 0.17.0
19+
tag: 0.18.0
2020
pullPolicy: IfNotPresent
2121
## Name of the existing secret containing credentials for the Marquez installation.
2222
## When this is specified, it will take precedence over the values configured in the 'db' section.
@@ -70,7 +70,7 @@ web:
7070
image:
7171
registry: docker.io
7272
repository: marquezproject/marquez-web
73-
tag: 0.17.0
73+
tag: 0.18.0
7474
pullPolicy: IfNotPresent
7575
## Marquez website will run on this port
7676
##

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.17.0</version>
13+
<version>0.18.0</version>
1414
</dependency>
1515
```
1616

1717
or Gradle:
1818

1919
```groovy
20-
implementation 'io.github.marquezproject:marquez-java:0.17.0
20+
implementation 'io.github.marquezproject:marquez-java:0.18.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.17.0"
16+
__version__ = "0.18.0"
1717

1818
from marquez_client.client import MarquezClient # noqa: F401
1919
from marquez_client.client_wo import MarquezWriteOnlyClient # 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.17.0
2+
current_version = 0.18.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
@@ -33,7 +33,7 @@
3333

3434
setup(
3535
name="marquez-python",
36-
version="0.17.0",
36+
version="0.18.0",
3737
description="Marquez Python Client",
3838
long_description=readme,
3939
long_description_content_type="text/markdown",

docker/up.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ args="-V --force-recreate --remove-orphans"
6161
API_PORT=5000
6262
API_ADMIN_PORT=5001
6363
WEB_PORT=3000
64-
TAG=0.17.0
64+
TAG=0.18.0
6565
while [ $# -gt 0 ]; do
6666
case $1 in
6767
-a|'--api-port')
@@ -78,11 +78,11 @@ while [ $# -gt 0 ]; do
7878
;;
7979
-t|'--tag')
8080
shift
81-
TAG="${1}"
81+
TAG=0.18.0
8282
;;
8383
-b|'--build')
8484
BUILD='true'
85-
TAG='latest'
85+
TAG=0.18.0
8686
;;
8787
-s|'--seed')
8888
SEED='true'
@@ -107,4 +107,4 @@ if [[ "${SEED}" = "true" ]]; then
107107
compose_files+=" -f docker-compose.seed.yml"
108108
fi
109109

110-
API_PORT=${API_PORT} API_ADMIN_PORT=${API_ADMIN_PORT} WEB_PORT=${WEB_PORT} TAG=${TAG} docker-compose $compose_files up $args
110+
API_PORT=${API_PORT} API_ADMIN_PORT=${API_ADMIN_PORT} WEB_PORT=${WEB_PORT} TAG=0.18.0

docs/openapi.html

Lines changed: 21 additions & 15 deletions
Large diffs are not rendered by default.

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
org.gradle.internal.http.connectionTimeout=60000
22
org.gradle.internal.http.socketTimeout=60000
33

4-
version=0.17.1-SNAPSHOT
4+
version=0.18.0

0 commit comments

Comments
 (0)