From 8b11293d1c824e96396349a3988159bc277d4f49 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 15 Jun 2026 03:11:20 +0000 Subject: [PATCH] Release 1.0.4: bump version across pyproject, __init__, README --- 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 886ef172..f6f2ede0 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.3` | +| Current version | `1.0.4` | | Python | `>=3.11` | | Required runtime dependencies | NumPy, SciPy | | R required at runtime | No | diff --git a/pyproject.toml b/pyproject.toml index 0036cbd4..db3c35e5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "ovvo-nns" -version = "1.0.3" +version = "1.0.4" 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 e77d2a41..19ba7745 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.3" +__version__ = "1.0.4" _EXPORTS = { "FactorDesign": ("nns.regression", "FactorDesign"),