diff --git a/README.md b/README.md index 1ce4008..ee38289 100644 --- a/README.md +++ b/README.md @@ -148,6 +148,7 @@ langex │   ├── classes.py │   ├── errors.py │   ├── functions.py +│   ├── handlers.py │   ├── pipeline.py │   └── testing.py ├── errors @@ -164,6 +165,9 @@ langex │   ├── returns_meta.py │   ├── signature_parser.py │   └── signature.py +├── handlers +│   ├── __init__.py +│   └── err_handlers.py ├── pipelines │   ├── __init__.py │   └── handler.py @@ -173,6 +177,7 @@ langex │   └── helpers.py ├── utils │   ├── __init__.py +│   ├── cloner.py │   ├── extracter.py │   └── matcher.py └── validation diff --git a/pyproject.toml b/pyproject.toml index cdad1eb..7dc705b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "langex" -version = "0.4.3" +version = "0.4.4" description = "Runtime language extensions and validation tools for Python" readme = "README.md" license = { file = "LICENSE" }