Skip to content

Commit 9b46d3f

Browse files
committed
1.5.0 Full class logging, test improvements, uniform log api so that log and l is the same + numerous small fixes
1 parent e41afd6 commit 9b46d3f

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![PyPI](https://img.shields.io/pypi/v/logeye?cachebust=1774375071)
1+
![PyPI](https://img.shields.io/pypi/v/logeye?cachebust=1774629933)
22
![Python](https://img.shields.io/pypi/pyversions/logeye)
33
![License](https://img.shields.io/github/license/MattFor/LogEye)
44

@@ -708,5 +708,5 @@ MIT License © 2026
708708

709709
See [LICENSE](LICENSE) for details.
710710

711-
Version 1.4.0
711+
Version 1.5.0
712712

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "logeye"
7-
version = "1.4.0"
7+
version = "1.5.0"
88
description = "Frictionless runtime logging for Python variables and functions"
99
readme = "README.md"
1010
requires-python = ">=3.10"

release.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,9 +143,9 @@ if [[ "$GIT_ONLY" == false ]]; then
143143
TEST_OUTPUT=$(pytest --maxfail=0 --disable-warnings -q 2>&1 || true)
144144
echo "$TEST_OUTPUT"
145145

146-
PASSED=$(echo "$TEST_OUTPUT" | grep -oP '\d+(?= passed)' | head -1)
147-
FAILED=$(echo "$TEST_OUTPUT" | grep -oP '\d+(?= failed)' | head -1)
148-
XPASSED=$(echo "$TEST_OUTPUT" | grep -oP '\d+(?= xpassed)' | head -1)
146+
PASSED=$(echo "$TEST_OUTPUT" | grep -oP '\d+(?= passed)' | head -1 || true)
147+
FAILED=$(echo "$TEST_OUTPUT" | grep -oP '\d+(?= failed)' | head -1 || true)
148+
XPASSED=$(echo "$TEST_OUTPUT" | grep -oP '\d+(?= xpassed)' | head -1 || true)
149149

150150
PASSED=${PASSED:-0}
151151
FAILED=${FAILED:-0}

0 commit comments

Comments
 (0)