Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
mlodic committed Aug 29, 2024
1 parent 722b226 commit 1574906
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Changelog
## [5.0.2](https://github.com/intelowlproject/pyintelowl/releases/tag/5.0.2)
Fixed previous broken release

## [5.0.1](https://github.com/intelowlproject/pyintelowl/releases/tag/5.0.1)
- Updated documentation
- Removed old endpoints
Expand Down
9 changes: 6 additions & 3 deletions pyintelowl/cli/_jobs_utils.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import time


from rich import box
from rich.console import Console, Group
from rich.panel import Panel
Expand Down Expand Up @@ -115,9 +116,11 @@ def _display_all_jobs(logger, rows):
table.add_row(
str(el["id"]),
el["observable_name"] if el["observable_name"] else el["file_name"],
el["observable_classification"]
if el["observable_classification"]
else el["file_mimetype"],
(
el["observable_classification"]
if el["observable_classification"]
else el["file_mimetype"]
),
", ".join([t["label"] for t in el["tags"]]),
", ".join(el["analyzers_to_execute"]),
", ".join(el["connectors_to_execute"]),
Expand Down
2 changes: 1 addition & 1 deletion pyintelowl/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "5.0.1"
__version__ = "5.0.2"

0 comments on commit 1574906

Please sign in to comment.