Skip to content

Commit b8c56c5

Browse files
Finalize v0.13.0 (#2476)
* rename to 0.13.0, general cleanup * add missing contributors * a couple more 0.12.1->0.13.0 renames * Change release date --------- Co-authored-by: Adam R. Jensen <39184289+AdamRJensen@users.noreply.github.com>
1 parent 54f61ec commit b8c56c5

File tree

4 files changed

+15
-13
lines changed

4 files changed

+15
-13
lines changed

docs/sphinx/source/whatsnew.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ What's New
66

77
These are new features and improvements of note in each release.
88

9-
.. include:: whatsnew/v0.12.1.rst
9+
.. include:: whatsnew/v0.13.0.rst
1010
.. include:: whatsnew/v0.12.0.rst
1111
.. include:: whatsnew/v0.11.2.rst
1212
.. include:: whatsnew/v0.11.1.rst

docs/sphinx/source/whatsnew/v0.12.1.rst renamed to docs/sphinx/source/whatsnew/v0.13.0.rst

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
.. _whatsnew_01201:
1+
.. _whatsnew_01300:
22

33

4-
v0.12.1 (XXXX, 2025)
5-
------------------------
4+
v0.13.0 (June 7, 2025)
5+
----------------------
66

77
Breaking Changes
88
~~~~~~~~~~~~~~~~
@@ -54,7 +54,7 @@ Enhancements
5454
:py:class:`~pvlib.pvsystem.PVSystem` and :py:class:`~pvlib.modelchain.ModelChain`.
5555
(:issue:`2402`, :pull:`2433`)
5656
* Add optional arguments ``temperature_ref`` and ``irradiance_ref`` to
57-
:py:func:`~pvlib.pvsystem.sapm`(:issue:`2432`, :pull:`2434`)
57+
:py:func:`~pvlib.pvsystem.sapm` (:issue:`2432`, :pull:`2434`)
5858
* Add NREL NSRDB PSM v4 API client to :py:mod:`pvlib.iotools`. See
5959
:py:func:`~pvlib.iotools.get_nsrdb_psm4_aggregated`,
6060
:py:func:`~pvlib.iotools.get_nsrdb_psm4_tmy`,
@@ -75,7 +75,7 @@ Documentation
7575
:py:func:`~pvlib.pvsystem.sapm` (:issue:`2392`, :pull:`2435`)
7676
* Add gallery example on calculating irradiance at crop level for agriPV systems.
7777
(:pull:`2459`)
78-
* Update references in :py:func`~pvlib.irradiance.get_extra_radiation`
78+
* Update references in :py:func:`~pvlib.irradiance.get_extra_radiation`
7979
(:issue:`2333`, :pull:`2347`)
8080
* Update references in :py:func:`~pvlib.iotools.get_cams` and :py:func:`~pvlib.iotools.read_cams`
8181
(:issue:`2427`, :pull:`2457`)
@@ -86,16 +86,11 @@ Requirements
8686
~~~~~~~~~~~~
8787
* ``wheel`` is no longer a build dependency. (:pull:`2439`)
8888

89-
Testing
90-
~~~~~~~
91-
92-
9389
Maintenance
9490
~~~~~~~~~~~
9591
* Update ``pyproject.toml`` to replace deprecated license table and
9692
classifiers. (:issue:`2440`, :pull:`2441`)
9793

98-
9994
Contributors
10095
~~~~~~~~~~~~
10196
* Cliff Hansen (:ghuser:`cwhanse`)
@@ -108,3 +103,10 @@ Contributors
108103
* omahs (:ghuser:`omahs`)
109104
* Adam R. Jensen (:ghuser:`AdamRJensen`)
110105
* Marion Schroedter-Homscheidt (:ghuser:`mschroedter`)
106+
* Anton Driesse (:ghuser:`adriesse`)
107+
* Mark Mikofski (:ghuser:`mikofski`)
108+
* Ioannis Sifnaios (:ghuser:`IoannisSifnaios`)
109+
* Mark Campanelli (:ghuser:`markcampanelli`)
110+
* Paul Gilman (:ghuser:`cpaulgilman`)
111+
* Yu Xie (:ghuser:`xieyupku`)
112+
* Grant Buster (:ghuser:`grantbuster`)

pvlib/iotools/psm3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,5 +361,5 @@ def read_psm3(filename, map_variables=True):
361361
return data, metadata
362362

363363

364-
parse_psm3 = deprecated(since="0.12.1", name="parse_psm3",
364+
parse_psm3 = deprecated(since="0.13.0", name="parse_psm3",
365365
alternative="read_psm3")(read_psm3)

pvlib/iotools/sodapro.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,5 +359,5 @@ def read_cams(filename, integrated=False, label=None, map_variables=True):
359359
return data, metadata
360360

361361

362-
parse_cams = deprecated(since="0.12.1", name="parse_cams",
362+
parse_cams = deprecated(since="0.13.0", name="parse_cams",
363363
alternative="read_cams")(read_cams)

0 commit comments

Comments
 (0)