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
4 changes: 4 additions & 0 deletions docs/sphinx/source/changelog.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
RdTools Change Log
==================

.. include:: changelog/v2.0.0.rst
30 changes: 30 additions & 0 deletions docs/sphinx/source/changelog/v2.0.0.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@

************************
v2.0.0 (MONTH DAY, YEAR)
************************

API Changes
-----------

Enhancements
------------
* Add new :py:mod:`~rdtools.soiling` module to implement the stochastic rate and
recovery method (:pull:`112`).
* Add new functions :py:func:`~rdtools.normalization.energy_from_power` and
:py:func:`~rdtools.normalization.interpolate`.

Bug fixes
---------

Testing
-------

Documentation
-------------
* Create sphinx documentation and set up ReadTheDocs (:pull:`125`).

Requirements
------------

Contributors
------------
8 changes: 8 additions & 0 deletions docs/sphinx/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
# ones.
extensions = [
'sphinx.ext.napoleon',
'sphinx.ext.extlinks',
'sphinx_rtd_theme',
'sphinx.ext.autosummary',
'm2r',
Expand All @@ -56,6 +57,13 @@

source_suffix = ['.rst', '.md']

# List of external link aliases. Allows use of :pull:`123` to autolink that PR
extlinks = {
'issue': ('https://github.com/NREL/rdtools/issues/%s', 'GH #'),
'pull': ('https://github.com/NREL/rdtools/pull/%s', 'GH #'),
'ghuser': ('https://github.com/%s', '@')
}

# -- Options for HTML output -------------------------------------------------

# The theme to use for HTML and HTML Help pages. See the documentation for
Expand Down
1 change: 1 addition & 0 deletions docs/sphinx/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Documentation Contents

In-Depth Examples <example>
API Reference <api>
Change Log <changelog>

Indices and tables
==================
Expand Down