Skip to content

Commit

Permalink
Release 1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ZeroBone committed Feb 13, 2024
1 parent a4cc832 commit d054fd8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions docs/dev/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## Release 1.2.2

* Improved the way in which the result of the `run` and `test` commands gets outputted, it now also includes the chosen template.
* Significantly improved performance by implementing a better system for graceful IPC-based interrupting of the thread listening for messages from child processes.

[View on GitHub](https://github.com/ZeroBone/OfficialEye/releases/tag/1.2.2){ .md-button }

## Release 1.2.1

* Bug fixes & minor improvements.
Expand Down
2 changes: 1 addition & 1 deletion src/officialeye/_cli/ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def _child_listener(listener: _ChildrenListener, /):

assert len(connections) >= 1

wait(connections, timeout=1.0)
wait(connections, timeout=4.0)

messages_to_handle: List[Tuple[Any, _Child]] = []

Expand Down
2 changes: 1 addition & 1 deletion src/tests/unit/api/test_detect.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from difflib import SequenceMatcher

from officialeye import Context, IImage, Image, ISupervisionResult, Template, IInterpretationResult
from officialeye import Context, IImage, IInterpretationResult, Image, ISupervisionResult, Template
from officialeye.detection import detect


Expand Down

0 comments on commit d054fd8

Please sign in to comment.