Skip to content

Commit

Permalink
feat: Table model badges field update (amundsen-io#56)
Browse files Browse the repository at this point in the history
* changed Table model to have badges contain badges rather than tags

Signed-off-by: Allison Suarez Miranda <asuarezmiranda@lyft.com>

* forgot to bump version up

Signed-off-by: Allison Suarez Miranda <asuarezmiranda@lyft.com>
  • Loading branch information
allisonsuarez committed Sep 1, 2020
1 parent 09897d9 commit 6a393d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion amundsen_common/models/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ class Table:
schema: str
name: str
tags: List[Tag] = []
badges: Optional[List[Tag]] = []
badges: List[Badge] = []
table_readers: List[Reader] = []
description: Optional[str] = None
columns: List[Column]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='amundsen-common',
version='0.4.0',
version='0.5.0',
description='Common code library for Amundsen',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 6a393d0

Please sign in to comment.