From daafe0239c1a1800bf0849655ee6e43eb96703f5 Mon Sep 17 00:00:00 2001 From: OVVO-Financial Date: Mon, 15 Jun 2026 23:39:13 -0400 Subject: [PATCH] Bump version to 1.0.6 --- README.md | 2 +- pyproject.toml | 2 +- src/nns/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index daae6186..eed02282 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ NNS is built around partial moments, the lower and upper components of variance, |---|---| | Distribution package | `ovvo-nns` | | Import package | `nns` | -| Current version | `1.0.5` | +| Current version | `1.0.6` | | Python | `>=3.11` | | Required runtime dependencies | NumPy, SciPy | | R required at runtime | No | diff --git a/pyproject.toml b/pyproject.toml index dd8c353a..3d70fec3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "ovvo-nns" -version = "1.0.5" +version = "1.0.6" description = "Python port of nonlinear nonparametric statistics from R NNS" readme = "README.md" requires-python = ">=3.11" diff --git a/src/nns/__init__.py b/src/nns/__init__.py index a4ef34e0..bd543224 100644 --- a/src/nns/__init__.py +++ b/src/nns/__init__.py @@ -4,7 +4,7 @@ from nns.pm_matrix import pm_matrix as pm_matrix -__version__ = "1.0.5" +__version__ = "1.0.6" _EXPORTS = { "FactorDesign": ("nns.regression", "FactorDesign"),