From 918725dd22d39de427f4c323efab604ba547529a Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 13 Jul 2026 01:57:49 +0000 Subject: [PATCH] Bump version to 1.2.0 Default multivariate n_best now scales with sqrt(observations), a behavior change to point estimation, warranting a minor version bump. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01BPbZvtDw4h2XJo9w5hw57h --- README.md | 2 +- pyproject.toml | 2 +- src/nns/__init__.py | 2 +- uv.lock | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5d5f802a..32ab9243 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.1.0` | +| Current version | `1.2.0` | | Python | `>=3.11` | | Required runtime dependencies | NumPy, SciPy | | R required at runtime | No | diff --git a/pyproject.toml b/pyproject.toml index 0ca517c9..c69b074f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "ovvo-nns" -version = "1.1.0" +version = "1.2.0" 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 848fc553..e841ee7b 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.1.0" +__version__ = "1.2.0" _EXPORTS = { "BoostResult": ("nns.boost", "BoostResult"), diff --git a/uv.lock b/uv.lock index 6248c8c8..614f14ec 100644 --- a/uv.lock +++ b/uv.lock @@ -1044,7 +1044,7 @@ wheels = [ [[package]] name = "ovvo-nns" -version = "1.1.0" +version = "1.2.0" source = { editable = "." } dependencies = [ { name = "matplotlib" },