Skip to content

Commit c48b3a6

Browse files
mikofskiwholmgren
authored andcommitted
add code formatting, links, add v prefix to 0.7 (#6)
1 parent 52e9243 commit c48b3a6

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

docs/sphinx/source/whatsnew/v0.6.0.rst

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -17,31 +17,31 @@ API Changes
1717
that can calculate a quantity using multiple algorithms now start
1818
with the prefix ``get_``. For example, ``relativeairmass`` can calculate
1919
airmass using one of many ``model`` arguments. Its name has been changed
20-
to ``get_relative_airmass``. The old function names remain in this
20+
to :func:`~pvlib.atmosphere.get_relative_airmass`. The old function names remain in this
2121
release, but will emit a ``PVLibDeprecationWarning`` when called. The
22-
old functions will be removed in the 0.7 release. Functions composed
22+
old functions will be removed in the v0.7 release. Functions composed
2323
of multiple words jammed together have been renamed with underscores
2424
separating the words (see above).
2525
Each change is detailed below. (:issue:`427`)
26-
* Deprecated relativeairmass. relativeairmass will be removed in 0.7.
27-
Use the new get_relative_airmass instead. (:issue:`427`)
28-
* Deprecated absoluteairmass. absoluteairmass will be removed in 0.7.
29-
Use the new get_absolute_airmass instead. (:issue:`427`)
30-
* Deprecated irradiance.globalinplane. globalinplane will be removed in 0.7.
31-
Use the new irradiance.poa_components instead. (:issue:`427`)
32-
* Added irradiance.poa_components. Function is the same as the now-deprecated
33-
irradiance.globalinplane, but adds 'poa_sky_diffuse' and
34-
'poa_ground_diffuse' to the output. (:issue:`427`)
35-
* Deprecated irradiance.extraradiation. Use irradiance.get_extra_radiation
36-
instead. irradiance.extraradiation will be removed in 0.7. (:issue:`427`)
37-
* Deprecated irradiance.grounddiffuse. Use irradiance.get_ground_diffuse
38-
instead. irradiance.grounddiffuse will be removed in 0.7. (:issue:`427`)
39-
* Added irradiance.get_poa_sky_diffuse. (:issue:`427`)
40-
* Deprecated irradiance.total_irrad. Use irradiance.get_total_poa_irradiance
41-
instead. irradiance.total_irrad will be removed in 0.7. (:issue:`427`)
42-
* Removed 'klutcher' from get_sky_diffuse/total_irrad. This misspelling was
26+
* Deprecated ``relativeairmass``; it will be removed in v0.7.
27+
Use the new :func:`~pvlib.atmosphere.get_relative_airmass` instead. (:issue:`427`)
28+
* Deprecated ``absoluteairmass``; it will be removed in v0.7.
29+
Use the new :func:`~pvlib.atmosphere.get_absolute_airmass` instead. (:issue:`427`)
30+
* Deprecated ``irradiance.globalinplane``; it will be removed in v0.7.
31+
Use the new :func:`~pvlib.irradiance.poa_components` instead. (:issue:`427`)
32+
* Added :func:`~pvlib.irradiance.poa_components`. Function is the same as the now-deprecated
33+
``irradiance.globalinplane``, but adds ``'poa_sky_diffuse'`` and
34+
``'poa_ground_diffuse'`` to the output. (:issue:`427`)
35+
* Deprecated ``irradiance.extraradiation``; it will be removed in v0.7.
36+
Use :func:`pvlib.irradiance.get_extra_radiation` instead. (:issue:`427`)
37+
* Deprecated ``irradiance.grounddiffuse``; it will be removed in v0.7. Use
38+
:func:`~pvlib.irradiance.get_ground_diffuse` instead. (:issue:`427`)
39+
* Added :func:`~pvlib.irradiance.get_poa_sky_diffuse`. (:issue:`427`)
40+
* Deprecated ``irradiance.total_irrad``; it will be removed in v0.7. Use
41+
:func:`~pvlib.irradiance.get_total_poa_irradiance` instead. (:issue:`427`)
42+
* Removed ``'klutcher'`` from ``get_sky_diffuse``/``total_irrad``. This misspelling was
4343
deprecated long ago but never removed. (:issue:`97`)
44-
* pvsystem.calcparams_desoto now requires arguments for each module model
44+
* :func:`~pvlib.pvsystem.calcparams_desoto` now requires arguments for each module model
4545
parameter. (:issue:`462`)
4646
* Add losses_parameters attribute to PVSystem objects and remove the kwargs
4747
support from PVSystem.pvwatts_losses. Enables custom losses specification

0 commit comments

Comments
 (0)