Skip to content

Commit 90c76fc

Browse files
committed
bump version
1 parent 05e68cf commit 90c76fc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/jsonchain/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
A small package to aid in the use of the chaining techniques taught by Structural Python
33
"""
44

5-
__version__ = "0.4.1"
5+
__version__ = "0.4.2"
66

77

88
from .io import (load_json, dump_json)

src/jsonchain/envelope.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,4 +101,4 @@ def abs(x: float | int | None) -> float | int | None:
101101
"""
102102
if x is None:
103103
return x
104-
return abs(x)
104+
return PYABS(x)

0 commit comments

Comments
 (0)