Skip to content

Commit 4984ca9

Browse files
committed
Prepare for release 0.50.0
Signed-off-by: Willy Lulciuc <[email protected]>
1 parent 2c9b894 commit 4984ca9

File tree

9 files changed

+815
-2416
lines changed

9 files changed

+815
-2416
lines changed

.circleci/db-migration.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# Version of PostgreSQL
1414
readonly POSTGRES_VERSION="14"
1515
# Version of Marquez
16-
readonly MARQUEZ_VERSION=0.49.0
16+
readonly MARQUEZ_VERSION=0.50.0
1717
# Build version of Marquez
1818
readonly MARQUEZ_BUILD_VERSION="$(git log --pretty=format:'%h' -n 1)" # SHA1
1919
readonly POSTGRES_PORT=5432

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ API_ADMIN_PORT=5001
33
WEB_PORT=3000
44
POSTGRES_PORT=5432
55
SEARCH_PORT=9200
6-
TAG=0.49.0
6+
TAG=0.50.0

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.49.0
32+
version: 0.50.0

chart/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ marquez:
2020
image:
2121
registry: docker.io
2222
repository: marquezproject/marquez
23-
tag: 0.49.0
23+
tag: 0.50.0
2424
pullPolicy: IfNotPresent
2525
## Name of the existing secret containing credentials for the Marquez installation.
2626
## When this is specified, it will take precedence over the values configured in the 'db' section.
@@ -80,7 +80,7 @@ web:
8080
image:
8181
registry: docker.io
8282
repository: marquezproject/marquez-web
83-
tag: 0.49.0
83+
tag: 0.50.0
8484
pullPolicy: IfNotPresent
8585
## Marquez website will run on this port
8686
##

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

1717
or Gradle:
1818

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

2323
## Usage

docker/up.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
set -e
99

1010
# Version of Marquez
11-
readonly VERSION=0.49.0
11+
readonly VERSION=0.50.0
1212
# Build version of Marquez
13-
readonly BUILD_VERSION=0.49.0
13+
readonly BUILD_VERSION=0.50.0
1414

1515
title() {
1616
echo -e "\033[1m${1}\033[0m"

docs/openapi.html

Lines changed: 804 additions & 2405 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.50.0-SNAPSHOT
10+
version=0.50.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.50.0-SNAPSHOT
6+
version: 0.50.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)