Skip to content

Commit 07b8004

Browse files
committed
Version 2.0.0
New mouse handling API, scrollable Container, better docs & more! See release log.
1 parent 1bde4e4 commit 07b8004

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pytermgui/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040
warnings.filterwarnings("ignore")
4141

42-
__version__ = "1.1.0"
42+
__version__ = "2.0.0"
4343

4444

4545
def auto(data: Any, **widget_args: Any) -> Optional[Widget | list[Splitter]]:

pytermgui/cmd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,7 @@ def main() -> None:
544544
)
545545

546546
except Exception as error: # pylint: disable=broad-except
547-
git_hash = f"Could not determine due to {type(error).__name__}."
547+
git_hash = f"Could not determine due to {type(error).__name__}:\n\t{error}."
548548
latest_tag_hash = ""
549549

550550
print(f"PyTermGUI v{__version__}{'+' if latest_tag_hash != git_hash else ''}")

0 commit comments

Comments
 (0)