diff --git a/CHANGELOG.md b/CHANGELOG.md index 19e0b2793..701912a0e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ## [Unreleased] - [#405] Fixed timezone/timestamp rendering issues for `calendar.ical` events. +- [#403] Included inherited actions in plugins docs. ## [1.0.7] - 2024-06-02 diff --git a/docs/source/conf.py b/docs/source/conf.py index d17417b3c..c34efd824 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -21,7 +21,7 @@ sys.path.insert(0, os.path.abspath("./_ext")) # -- Project information ----------------------------------------------------- project = 'Platypush' -copyright = '2017-2023, Fabio Manganiello' +copyright = '2017-2024, Fabio Manganiello' author = 'Fabio Manganiello ' # The short X.Y version @@ -199,6 +199,7 @@ intersphinx_mapping = {'python': ('https://docs.python.org/3', None)} autodoc_default_options = { 'members': True, 'show-inheritance': True, + 'inherited-members': True, } sys.path.insert(0, os.path.abspath('../..'))