Skip to content

Commit

Permalink
0.4.5 (#146)
Browse files Browse the repository at this point in the history
* 🚑 Fix banner alignment in terminal

* 🔖 0.4.5
  • Loading branch information
pwwang authored Feb 26, 2023
1 parent 750e704 commit 0d2dfef
Show file tree
Hide file tree
Showing 5 changed files with 70 additions and 66 deletions.
4 changes: 4 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 0.4.5

- 🚑 Fix banner alignment in terminal

## 0.4.4

- 🐛 Fix when cli plugin has no docstring
Expand Down
10 changes: 5 additions & 5 deletions pipen/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
from .version import __version__

if TYPE_CHECKING: # pragma: no cover
from rich.console import RenderableType, ConsoleRenderable
from rich.console import RenderableType


class RichHandler(_RichHandler):
Expand Down Expand Up @@ -362,10 +362,10 @@ def pipen_banner() -> "RenderableType":
caption=f"version: {__version__}",
)
table.add_column(justify="center")
table.add_row(r" _____________________________________ __")
table.add_row(r" ___ __ \___ _/__ __ \__ ____/__ | / /")
table.add_row(r" __ /_/ /__ / __ /_/ /_ __/ __ |/ / ")
table.add_row(r"_ ____/__/ / _ ____/_ /___ _ /| / ")
table.add_row(r" _____________________________________ __")
table.add_row(r" ___ __ \___ _/__ __ \__ ____/__ | / /")
table.add_row(r" __ /_/ /__ / __ /_/ /_ __/ __ |/ / ")
table.add_row(r" _ ____/__/ / _ ____/_ /___ _ /| / ")
table.add_row(r"/_/ /___/ /_/ /_____/ /_/ |_/ ")
table.add_row("")

Expand Down
2 changes: 1 addition & 1 deletion pipen/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Provide version of pipen"""

__version__ = "0.4.4"
__version__ = "0.4.5"
118 changes: 59 additions & 59 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.masonry.api"

[tool.poetry]
name = "pipen"
version = "0.4.4"
version = "0.4.5"
description = "A pipeline framework for python"
authors = [ "pwwang <[email protected]>",]
license = "MIT"
Expand Down

0 comments on commit 0d2dfef

Please sign in to comment.