Skip to content

Commit

Permalink
docs(CHANGELOG): include CHANGELOG into docs
Browse files Browse the repository at this point in the history
  • Loading branch information
BjoernLudwigPTB committed Mar 12, 2021
1 parent c2ca702 commit 4ba20d3
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ results/
docs/_build
docs/README.md
docs/agentMET4FOF_tutorials
docs/CHANGELOG.md

# Build clutter #
#################
Expand Down
4 changes: 3 additions & 1 deletion docs/CHANGELOG.md → CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@
## v0.6.1 (2021-03-12)
### Fix
* **metrological_streams:** Fixed computational error for batches of size more than one ([`686bad5`](https://github.com/Met4FoF/agentMET4FOF/commit/686bad58ee02b216ffb3c663c9492d7dd7aaf6df))
* **agents:** Fixed `buffer.clear` method, which did not work anymore after moving from `memory` to `buffer`

### Documentation
* **README:** Include the Zenodo DOI banner and add the Citation section ([`4a57dd8`](https://github.com/Met4FoF/agentMET4FOF/commit/4a57dd8402590b9439ecf3bc47fbf950c6d44c7d))
* **docstrings:** Seriously improve docstrings and type hinting in `agents.py` and `dashboard/LayoutHelper.py`

**[See all commits in this version](https://github.com/Met4FoF/agentMET4FOF/compare/v0.6.0...v0.6.1)**
**[See all commits in this version](https://github.com/Met4FoF/agentMET4FOF/compare/0.6.0...v0.6.1)**
9 changes: 7 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
# This should make Python built-in, Pandas, SciPy, PyDynamic and time-series-metadata
# documentation available inside our docs.
intersphinx_mapping = {
"Python": ("http://docs.python.org/", None),
"Python": ("https://docs.python.org/3", None),
"pd": ("http://pandas.pydata.org/pandas-docs/dev", None),
"SciPy": ("https://docs.scipy.org/doc/scipy/reference", None),
"PyDynamic": (
Expand All @@ -65,7 +65,7 @@
None,
),
"np": (
"http://docs.scipy.org/doc/numpy/",
"https://numpy.org/doc/stable/",
None,
),
}
Expand All @@ -92,6 +92,11 @@
os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "README.md")),
os.path.join(os.path.dirname(__file__), "README.md"),
)
# Copy over CHANGELOG from root folder.
shutil.copyfile(
os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "CHANGELOG")),
os.path.join(os.path.dirname(__file__), "CHANGELOG.md"),
)

# Copy over all other specified folders from repository tree.

Expand Down
1 change: 1 addition & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ agentMET4FOF - Metrological Agent-based system
INSTALL
UMLs
CONTRIBUTING
CHANGELOG

.. toctree::
:maxdepth: 1
Expand Down

0 comments on commit 4ba20d3

Please sign in to comment.