From 7b75c679afed3927d2b287e407a2efd552d719f7 Mon Sep 17 00:00:00 2001 From: OVVO-Financial Date: Sat, 4 Jul 2026 14:13:32 -0400 Subject: [PATCH] Bump version to 1.0.9 --- 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 6c1ef931..ea091327 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,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.8` | +| Current version | `1.0.9` | | Python | `>=3.11` | | Required runtime dependencies | NumPy, SciPy | | R required at runtime | No | diff --git a/pyproject.toml b/pyproject.toml index 12e16e23..8bea9a28 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "ovvo-nns" -version = "1.0.8" +version = "1.0.9" 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 276b6c0c..c4654ec5 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.8" +__version__ = "1.0.9" _EXPORTS = { "FactorDesign": ("nns.regression", "FactorDesign"),