Skip to content

Commit f3fd3c5

Browse files
committed
Issue #285 add CHANGELOG to docs
1 parent b8626a9 commit f3fd3c5

File tree

6 files changed

+13
-8
lines changed

6 files changed

+13
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ Minor release to address version packaging issue.
390390
- Moved datacube write/save/plot utilities from udf to client (EP-3456)
391391
- Add documentation on OpenID Connect authentication (EP-3485)
392392

393-
## Fixed
393+
### Fixed
394394
- Fix `kwargs` handling in `TimingLogger` decorator
395395

396396

docs/changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
```{include} ../CHANGELOG.md
2+
```

docs/conf.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,17 +40,18 @@
4040
'sphinx_autodoc_typehints',
4141
'sphinx.ext.viewcode',
4242
'sphinx.ext.doctest',
43+
'myst_parser',
4344
]
4445

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

4950
# The suffix(es) of source filenames.
50-
# You can specify multiple suffix as a list of string:
51-
#
52-
# source_suffix = ['.rst', '.md']
53-
source_suffix = '.rst'
51+
source_suffix = {
52+
".rst": "restructuredtext",
53+
".md": "markdown",
54+
}
5455

5556
# The master toctree document.
5657
master_doc = 'index'

docs/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ Table of contents
6363
process_mapping
6464
development
6565
best_practices
66+
changelog
6667

6768

6869
Indices and tables

docs/udf.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -261,17 +261,17 @@ Illustration of data chunking in ``apply`` with a UDF
261261
TODO
262262

263263
Example: ``apply_dimension`` with a UDF
264-
======================================
264+
========================================
265265

266266
TODO
267267

268268
Example: ``reduce_dimension`` with a UDF
269-
======================================
269+
========================================
270270

271271
TODO
272272

273273
Example: ``apply_neighborhood`` with a UDF
274-
=========================================
274+
===========================================
275275

276276
TODO
277277

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@
5454
"sphinx-autodoc-annotation",
5555
"sphinx-autodoc-typehints",
5656
"flake8",
57+
"myst-parser",
5758
]
5859
},
5960
entry_points={

0 commit comments

Comments
 (0)