Skip to content

Commit

Permalink
Fix py client version (#2713)
Browse files Browse the repository at this point in the history
* Fix `py` clinet version

Signed-off-by: wslulciuc <willy@datakin.com>

* continued: Fix `py` client version

Signed-off-by: wslulciuc <willy@datakin.com>

---------

Signed-off-by: wslulciuc <willy@datakin.com>
  • Loading branch information
wslulciuc authored Dec 20, 2023
1 parent fcadda6 commit ba1cb33
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@

### Fixed

* API: fix broken lineage graph for multiple runs of the same job [`#2710`](https://github.com/MarquezProject/marquez/pull/2710) [@pawel-big-lebowski](https://github.com/pawel-big-lebowski)
*Problem: lineage graph was not available for jobs run multiple times of the same job as a result of bug introduced with recent release.
* API: fix broken lineage graph for multiple runs of the same job [`#2710`](https://github.com/MarquezProject/marquez/pull/2710) [@pawel-big-lebowski](https://github.com/pawel-big-lebowski)
*Problem: lineage graph was not available for jobs run multiple times of the same job as a result of bug introduced in `0.43.0`.
In order to fix the inconsistent data, [this `UPDATE` query](https://github.com/MarquezProject/marquez/blob/main/api/src/main/java/marquez/db/migrations/V67_2_JobVersionsIOMappingBackfillJob.java#L19)
should be run. This is **not** required when upgrading directly to `0.43.0`.*
should be run. This is **not** required when upgrading directly to `0.43.1`.*

## [0.43.0](https://github.com/MarquezProject/marquez/compare/0.42.0...0.43.0) - 2023-12-15

Expand Down
2 changes: 1 addition & 1 deletion clients/python/marquez_client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# -*- coding: utf-8 -*-

__author__ = """Marquez Project"""
__version__ = "__version__ = "0.44.0""
__version__ = "0.43.1"

from marquez_client.client import MarquezClient # noqa: F401
from marquez_client.clients import Clients # noqa: F401
4 changes: 2 additions & 2 deletions clients/python/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[bumpversion]
current_version = 0.44.0
current_version = 0.43.1
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?P<rc>.*)
serialize =
serialize =
{major}.{minor}.{patch}{rc}
{major}.{minor}.{patch}

Expand Down
2 changes: 1 addition & 1 deletion clients/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

setup(
name="marquez-python",
version="version="0.44.0"",
version="0.43.1",
description="Marquez Python Client",
long_description=readme,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit ba1cb33

Please sign in to comment.