diff --git a/docs/sphinx/source/whatsnew.rst b/docs/sphinx/source/whatsnew.rst index 30a339dfef..ebcea80c13 100644 --- a/docs/sphinx/source/whatsnew.rst +++ b/docs/sphinx/source/whatsnew.rst @@ -6,7 +6,7 @@ What's New These are new features and improvements of note in each release. -.. include:: whatsnew/v0.12.1.rst +.. include:: whatsnew/v0.13.0.rst .. include:: whatsnew/v0.12.0.rst .. include:: whatsnew/v0.11.2.rst .. include:: whatsnew/v0.11.1.rst diff --git a/docs/sphinx/source/whatsnew/v0.12.1.rst b/docs/sphinx/source/whatsnew/v0.13.0.rst similarity index 90% rename from docs/sphinx/source/whatsnew/v0.12.1.rst rename to docs/sphinx/source/whatsnew/v0.13.0.rst index 8e8b76d3a5..754d2a539b 100644 --- a/docs/sphinx/source/whatsnew/v0.12.1.rst +++ b/docs/sphinx/source/whatsnew/v0.13.0.rst @@ -1,8 +1,8 @@ -.. _whatsnew_01201: +.. _whatsnew_01300: -v0.12.1 (XXXX, 2025) ------------------------- +v0.13.0 (June 7, 2025) +---------------------- Breaking Changes ~~~~~~~~~~~~~~~~ @@ -54,7 +54,7 @@ Enhancements :py:class:`~pvlib.pvsystem.PVSystem` and :py:class:`~pvlib.modelchain.ModelChain`. (:issue:`2402`, :pull:`2433`) * Add optional arguments ``temperature_ref`` and ``irradiance_ref`` to - :py:func:`~pvlib.pvsystem.sapm`(:issue:`2432`, :pull:`2434`) + :py:func:`~pvlib.pvsystem.sapm` (:issue:`2432`, :pull:`2434`) * Add NREL NSRDB PSM v4 API client to :py:mod:`pvlib.iotools`. See :py:func:`~pvlib.iotools.get_nsrdb_psm4_aggregated`, :py:func:`~pvlib.iotools.get_nsrdb_psm4_tmy`, @@ -75,7 +75,7 @@ Documentation :py:func:`~pvlib.pvsystem.sapm` (:issue:`2392`, :pull:`2435`) * Add gallery example on calculating irradiance at crop level for agriPV systems. (:pull:`2459`) -* Update references in :py:func`~pvlib.irradiance.get_extra_radiation` +* Update references in :py:func:`~pvlib.irradiance.get_extra_radiation` (:issue:`2333`, :pull:`2347`) * Update references in :py:func:`~pvlib.iotools.get_cams` and :py:func:`~pvlib.iotools.read_cams` (:issue:`2427`, :pull:`2457`) @@ -86,16 +86,11 @@ Requirements ~~~~~~~~~~~~ * ``wheel`` is no longer a build dependency. (:pull:`2439`) -Testing -~~~~~~~ - - Maintenance ~~~~~~~~~~~ * Update ``pyproject.toml`` to replace deprecated license table and classifiers. (:issue:`2440`, :pull:`2441`) - Contributors ~~~~~~~~~~~~ * Cliff Hansen (:ghuser:`cwhanse`) @@ -108,3 +103,10 @@ Contributors * omahs (:ghuser:`omahs`) * Adam R. Jensen (:ghuser:`AdamRJensen`) * Marion Schroedter-Homscheidt (:ghuser:`mschroedter`) +* Anton Driesse (:ghuser:`adriesse`) +* Mark Mikofski (:ghuser:`mikofski`) +* Ioannis Sifnaios (:ghuser:`IoannisSifnaios`) +* Mark Campanelli (:ghuser:`markcampanelli`) +* Paul Gilman (:ghuser:`cpaulgilman`) +* Yu Xie (:ghuser:`xieyupku`) +* Grant Buster (:ghuser:`grantbuster`) diff --git a/pvlib/iotools/psm3.py b/pvlib/iotools/psm3.py index 34eb35ca33..184a4a7028 100644 --- a/pvlib/iotools/psm3.py +++ b/pvlib/iotools/psm3.py @@ -361,5 +361,5 @@ def read_psm3(filename, map_variables=True): return data, metadata -parse_psm3 = deprecated(since="0.12.1", name="parse_psm3", +parse_psm3 = deprecated(since="0.13.0", name="parse_psm3", alternative="read_psm3")(read_psm3) diff --git a/pvlib/iotools/sodapro.py b/pvlib/iotools/sodapro.py index 18972a4c7b..be11dbf260 100644 --- a/pvlib/iotools/sodapro.py +++ b/pvlib/iotools/sodapro.py @@ -359,5 +359,5 @@ def read_cams(filename, integrated=False, label=None, map_variables=True): return data, metadata -parse_cams = deprecated(since="0.12.1", name="parse_cams", +parse_cams = deprecated(since="0.13.0", name="parse_cams", alternative="read_cams")(read_cams)