Skip to content

Commit

Permalink
Issue #285 add CHANGELOG to docs
Browse files Browse the repository at this point in the history
  • Loading branch information
soxofaan committed Jul 1, 2022
1 parent b8626a9 commit f3fd3c5
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ Minor release to address version packaging issue.
- Moved datacube write/save/plot utilities from udf to client (EP-3456)
- Add documentation on OpenID Connect authentication (EP-3485)

## Fixed
### Fixed
- Fix `kwargs` handling in `TimingLogger` decorator


Expand Down
2 changes: 2 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
```{include} ../CHANGELOG.md
```
9 changes: 5 additions & 4 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,18 @@
'sphinx_autodoc_typehints',
'sphinx.ext.viewcode',
'sphinx.ext.doctest',
'myst_parser',
]

import sphinx_autodoc_typehints
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']

# The suffix(es) of source filenames.
# You can specify multiple suffix as a list of string:
#
# source_suffix = ['.rst', '.md']
source_suffix = '.rst'
source_suffix = {
".rst": "restructuredtext",
".md": "markdown",
}

# The master toctree document.
master_doc = 'index'
Expand Down
1 change: 1 addition & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ Table of contents
process_mapping
development
best_practices
changelog


Indices and tables
Expand Down
6 changes: 3 additions & 3 deletions docs/udf.rst
Original file line number Diff line number Diff line change
Expand Up @@ -261,17 +261,17 @@ Illustration of data chunking in ``apply`` with a UDF
TODO

Example: ``apply_dimension`` with a UDF
======================================
========================================

TODO

Example: ``reduce_dimension`` with a UDF
======================================
========================================

TODO

Example: ``apply_neighborhood`` with a UDF
=========================================
===========================================

TODO

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"sphinx-autodoc-annotation",
"sphinx-autodoc-typehints",
"flake8",
"myst-parser",
]
},
entry_points={
Expand Down

0 comments on commit f3fd3c5

Please sign in to comment.