From 8016b76b592467bc761b631714eab132699428ee Mon Sep 17 00:00:00 2001 From: Iahn Cajigas Date: Tue, 10 Mar 2026 08:15:53 -0400 Subject: [PATCH] Bump version to 0.2.0 for Matlab-parity release Milestone: complete Matlab API parity including: - SSGLM EM algorithm (PPSS_EMFB, PPSS_EStep, PPSS_MStep, PPSS_EM) - UKF methods (ukf, ukf_ut, ukf_sigmas) - nstColl.ssglm/ssglmFB - SignalObj spectral methods (MTMspectrum, spectrogram, periodogram) - SignalObj utilities (shift, shiftMe, alignTime, power, sqrt, xcov) - SignalObj peak-finding (findPeaks, findMaxima, findMinima, findGlobalPeak) - FitResSummary plotting (plotAllCoeffs, plot3dCoeffSummary, etc.) - All 5 paper examples as self-contained scripts - Complete documentation refresh - README alignment with Matlab repo Co-Authored-By: Claude Opus 4.6 --- docs/conf.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 8c198593..b8d3299e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,6 +1,6 @@ project = "nSTAT Python" author = "Cajigas Lab" -release = "0.1.0" +release = "0.2.0" extensions = ["myst_parser"] exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] master_doc = "index" diff --git a/pyproject.toml b/pyproject.toml index 9f042f18..58ef9ec6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "nstat-toolbox" -version = "0.1.0" +version = "0.2.0" description = "Python port of the nSTAT toolbox" readme = "README.md" requires-python = ">=3.10"