Skip to content

Commit 1237848

Browse files
authored
Prepare release 0.13.1 (#1179)
Signed-off-by: wslulciuc <[email protected]>
1 parent ef8ce03 commit 1237848

File tree

18 files changed

+37
-26
lines changed

18 files changed

+37
-26
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
# Changelog
22

3-
## [Unreleased](https://github.com/MarquezProject/marquez/compare/0.13.0...HEAD)
3+
## [Unreleased](https://github.com/MarquezProject/marquez/compare/0.13.1...HEAD)
4+
5+
## [0.13.1](https://github.com/MarquezProject/marquez/compare/0.13.0...0.13.1) - 2021-04-01
6+
7+
### Changed
8+
9+
* Remove unused implementation of SQL parser in `marquez-airflow` [@mobuchowski](https://github.com/mobuchowski)
10+
11+
### Fixed
12+
13+
* Add inputs and outputs to lineage graph [@henneberger](https://github.com/henneberger)
14+
* Updated `NodeId` regex to support URIs with scheme and ports [@collado-mike](https://github.com/collado-mike)
415

516
## [0.13.0](https://github.com/MarquezProject/marquez/compare/0.12.2...0.13.0) - 2021-03-30
617

api/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=0.13.1-SNAPSHOT
1+
version=0.13.1

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.13.0
28+
version: 0.13.1

chart/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ helm delete marquez
4040
| `marquez.replicaCount` | Number of desired replicas | `1` |
4141
| `marquez.image.registry` | Marquez image registry | `docker.io` |
4242
| `marquez.image.repository` | Marquez image repository | `marquezproject/marquez` |
43-
| `marquez.image.tag` | Marquez image tag | `0.13.0` |
43+
| `marquez.image.tag` | Marquez image tag | `0.13.1` |
4444
| `marquez.image.pullPolicy` | Image pull policy | `IfNotPresent` |
4545
| `marquez.existingSecretName` | Name of an existing secret containing db password ('marquez-db-password' key) | `nil` |
4646
| `marquez.db.host` | PostgreSQL host | `localhost` |
@@ -63,7 +63,7 @@ helm delete marquez
6363
| `web.replicaCount` | Number of desired replicas | `1` |
6464
| `web.image.registry` | Marquez Web UI image registry | `docker.io` |
6565
| `web.image.repository` | Marquez Web UI image repository | `marquez-web` |
66-
| `web.image.tag` | Marquez Web UI image tag | `0.13.0` |
66+
| `web.image.tag` | Marquez Web UI image tag | `0.13.1` |
6767
| `web.image.pullPolicy` | Image pull policy | `IfNotPresent` |
6868
| `web.port` | Marquez Web host port | `5000` |
6969
| `web.resources.limits` | K8s resource limit overrides | `nil` |

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.13.0
19+
tag: 0.13.1
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.13.0
73+
tag: 0.13.1
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.13.0</version>
13+
<version>0.13.1</version>
1414
</dependency>
1515
```
1616

1717
or Gradle:
1818

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

2323
## Usage

clients/java/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version=0.13.1-SNAPSHOT
1+
version=0.13.1
22
jdk8.build=true

clients/python/marquez_client/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
# See the License for the specific language governing permissions and
1111
# limitations under the License.
1212

13-
VERSION = '0.13.0'
13+
VERSION = '0.13.1'

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.13.0
2+
current_version = 0.13.1
33

44
[metadata]
55
description-file = README.md

docs/openapi.html

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

0 commit comments

Comments
 (0)