We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bde4e4 commit 07b8004Copy full SHA for 07b8004
pytermgui/__init__.py
@@ -39,7 +39,7 @@
39
40
warnings.filterwarnings("ignore")
41
42
-__version__ = "1.1.0"
+__version__ = "2.0.0"
43
44
45
def auto(data: Any, **widget_args: Any) -> Optional[Widget | list[Splitter]]:
pytermgui/cmd.py
@@ -544,7 +544,7 @@ def main() -> None:
544
)
545
546
except Exception as error: # pylint: disable=broad-except
547
- git_hash = f"Could not determine due to {type(error).__name__}."
+ git_hash = f"Could not determine due to {type(error).__name__}:\n\t{error}."
548
latest_tag_hash = ""
549
550
print(f"PyTermGUI v{__version__}{'+' if latest_tag_hash != git_hash else ''}")
0 commit comments