From 90c76fc51296c494be03f922de814be511adc990 Mon Sep 17 00:00:00 2001 From: connor-sp Date: Thu, 11 Sep 2025 11:05:05 -0700 Subject: [PATCH] bump version --- src/jsonchain/__init__.py | 2 +- src/jsonchain/envelope.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/jsonchain/__init__.py b/src/jsonchain/__init__.py index 6cf2324..0ec407c 100644 --- a/src/jsonchain/__init__.py +++ b/src/jsonchain/__init__.py @@ -2,7 +2,7 @@ A small package to aid in the use of the chaining techniques taught by Structural Python """ -__version__ = "0.4.1" +__version__ = "0.4.2" from .io import (load_json, dump_json) diff --git a/src/jsonchain/envelope.py b/src/jsonchain/envelope.py index 4461a50..a3e10da 100644 --- a/src/jsonchain/envelope.py +++ b/src/jsonchain/envelope.py @@ -101,4 +101,4 @@ def abs(x: float | int | None) -> float | int | None: """ if x is None: return x - return abs(x) \ No newline at end of file + return PYABS(x) \ No newline at end of file