Skip to content

Commit

Permalink
Merge pull request #3 from Perfexionists/release-1.0.2
Browse files Browse the repository at this point in the history
Release version 1.0.2
  • Loading branch information
tfiedor authored Apr 20, 2024
2 parents 31cf042 + 408d6c4 commit 603adc5
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
Binary file removed figs/logo.jpg
Binary file not shown.
Binary file added figs/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion logki/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

import importlib.metadata

__version__ = importlib.metadata.version("logki")
__version__ = importlib.metadata.version("logki")
6 changes: 4 additions & 2 deletions logki/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ dependencies = [
# Plotting / visualization / output
"tabulate>=0.9",
]
version = "1.0.1"
version = "1.0.2"

[project.optional-dependencies]
docs = [
Expand Down

0 comments on commit 603adc5

Please sign in to comment.