diff --git a/README.md b/README.md index 66fc197..4b34a74 100755 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# logki: Lightweight Performance Version System +# logki: Log Analysis Toolkit [![build status](https://github.com/Perfexionists/logki/actions/workflows/ubuntu.yml/badge.svg)](https://github.com/Perfexionists/logki/actions) [![codecov](https://codecov.io/gh/Perfexionists/logki/graph/badge.svg?token=3x4Luodr84)](https://codecov.io/gh/Perfexionists/logki) diff --git a/figs/logo.jpg b/figs/logo.jpg deleted file mode 100755 index b45ddea..0000000 Binary files a/figs/logo.jpg and /dev/null differ diff --git a/figs/logo.png b/figs/logo.png new file mode 100755 index 0000000..7301b19 Binary files /dev/null and b/figs/logo.png differ diff --git a/logki/__init__.py b/logki/__init__.py index cf1690e..453dea8 100755 --- a/logki/__init__.py +++ b/logki/__init__.py @@ -3,4 +3,4 @@ import importlib.metadata -__version__ = importlib.metadata.version("logki") \ No newline at end of file +__version__ = importlib.metadata.version("logki") diff --git a/logki/app.py b/logki/app.py index d6e8b3c..c68e472 100755 --- a/logki/app.py +++ b/logki/app.py @@ -19,8 +19,10 @@ from prompt_toolkit.styles import Style from prompt_toolkit.widgets import TextArea, Frame +# Logki imports +import logki + -__VERSION__ = "1.0.0" NS_TO_MS = 1000000 @@ -410,7 +412,7 @@ def process_command(buff): def launch(): """Launches logki""" if len(sys.argv) == 2 and sys.argv[1] == '--version': - print(__VERSION__) + print(f"logki {logki.__version__}") sys.exit(0) elif len(sys.argv) == 2: with BufferedLog(sys.argv[1]) as buffered_log: diff --git a/pyproject.toml b/pyproject.toml index 4641ea1..1aa725a 100755 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,7 +39,7 @@ dependencies = [ # Plotting / visualization / output "tabulate>=0.9", ] -version = "1.0.1" +version = "1.0.2" [project.optional-dependencies] docs = [