diff --git a/doc/changelog/1.X.X-changelog.rst b/doc/changelog/1.X.X-changelog.rst index 79b583c871..a51ef7f13e 100644 --- a/doc/changelog/1.X.X-changelog.rst +++ b/doc/changelog/1.X.X-changelog.rst @@ -1,3 +1,13 @@ +1.9.2 (December 17, 2024) +========================= + +Bug fix release in the 1.9.x series. + + * FIX: Missed np.savetxt bstring (https://github.com/nipy/nipype/pull/3704) + * MAINT: Bump astral-sh/setup-uv from 3 to 4 (https://github.com/nipy/nipype/pull/3702) + * MAINT: Bump codecov/codecov-action from 4 to 5 (https://github.com/nipy/nipype/pull/3703) + + 1.9.1 (November 19, 2024) ========================= diff --git a/nipype/info.py b/nipype/info.py index 99b8c74919..3fd328e995 100644 --- a/nipype/info.py +++ b/nipype/info.py @@ -5,7 +5,7 @@ # nipype version information # Remove .dev0 for release -__version__ = "1.9.2.dev0" +__version__ = "1.9.2" def get_nipype_gitversion(): @@ -58,6 +58,7 @@ def get_nipype_gitversion(): "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Topic :: Scientific/Engineering", ] PYTHON_REQUIRES = ">= 3.9"