Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/sphinx/source/whatsnew.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
.. _whatsnew_01201:
.. _whatsnew_01300:


v0.12.1 (XXXX, 2025)
------------------------
v0.13.0 (June 7, 2025)
----------------------

Breaking Changes
~~~~~~~~~~~~~~~~
Expand Down Expand Up @@ -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`,
Expand All @@ -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`)
Expand All @@ -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`)
Expand All @@ -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`)
2 changes: 1 addition & 1 deletion pvlib/iotools/psm3.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
2 changes: 1 addition & 1 deletion pvlib/iotools/sodapro.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Loading