Skip to content

Commit f74c3b1

Browse files
committed
Prepare for release 0.45.0-rc.1
Signed-off-by: merobi-hub <[email protected]>
1 parent 60401b7 commit f74c3b1

File tree

9 files changed

+1078
-1036
lines changed

9 files changed

+1078
-1036
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.44.0
16+
readonly MARQUEZ_VERSION=0.45.0-rc.1
1717
# Build version of Marquez
1818
readonly MARQUEZ_BUILD_VERSION="$(git log --pretty=format:'%h' -n 1)" # SHA1
1919

.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.44.0
4+
TAG=0.45.0-rc.1

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.44.0
32+
version: 0.45.0-rc.1

chart/values.yaml

Lines changed: 2 additions & 2 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.44.0
20+
tag: 0.45.0-rc.1
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.44.0
78+
tag: 0.45.0-rc.1
7979
pullPolicy: IfNotPresent
8080
## Marquez website will run on this port
8181
##

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.44.0</version>
13+
<version>0.45.0-rc.1</version>
1414
</dependency>
1515
```
1616

1717
or Gradle:
1818

1919
```groovy
20-
implementation 'io.github.marquezproject:marquez-java:0.44.0
20+
implementation 'io.github.marquezproject:marquez-java:0.45.0-rc.1
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.44.0
11+
readonly VERSION=0.45.0-rc.1
1212
# Build version of Marquez
13-
readonly BUILD_VERSION=0.44.0
13+
readonly BUILD_VERSION=0.45.0-rc.1
1414

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

docs/openapi.html

Lines changed: 1067 additions & 1025 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.45.0-SNAPSHOT
10+
version=0.45.0-rc.1

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.45.0-SNAPSHOT
6+
version: 0.45.0-rc.1
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)