From df14aae5021a6f60e73de6965af1a35a7e8cb4d6 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 19 Jun 2026 04:39:32 +0000 Subject: [PATCH] Release v1.0.7: bump version across pyproject, nns.__version__, and README Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_018jW6Na57mrx8kgDWPEfeer --- 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 8e18db15..0c6c564d 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.6` | +| Current version | `1.0.7` | | Python | `>=3.11` | | Required runtime dependencies | NumPy, SciPy | | R required at runtime | No | diff --git a/pyproject.toml b/pyproject.toml index 1bf09242..82e0accd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "ovvo-nns" -version = "1.0.6" +version = "1.0.7" 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 bd543224..3957a859 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.6" +__version__ = "1.0.7" _EXPORTS = { "FactorDesign": ("nns.regression", "FactorDesign"),