diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index a2b54722..a2898431 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -17,7 +17,7 @@ Changelog .. +++++++++ -0.25.0 / 2022-MM-DD +0.25.0 / 2022-06-13 ------------------- Breaking Changes @@ -29,7 +29,7 @@ New Features Enhancements ++++++++++++ - (:pr:`285`) Standardized default on ``AtomicResult.native_files`` to ``{}`` - from ``None``. + from ``None``. May break strict logic. - (:pr:`289`, :pr:`290`) Transition from some early documentation tools (class ``AutodocBaseSettings`` and ``qcarchive_sphinx_theme``) to externally maintained ones (project https://github.com/mansenfranzen/autodoc_pydantic @@ -37,8 +37,9 @@ Enhancements Bug Fixes +++++++++ -- (:pr:`286`) Sphinx autodocumentation with typing of ``qcelemental.testing.compare_recursive`` no longer - warns about circular import. +- (:pr:`286`) Sphinx autodocumentation with typing of + ``qcelemental.testing.compare_recursive`` no longer warns about circular + import. 0.24.0 / 2021-11-18 diff --git a/setup.py b/setup.py index 3c0d226c..723504d7 100644 --- a/setup.py +++ b/setup.py @@ -38,6 +38,7 @@ 'sphinx', # autodoc was broken in 1.3.1 'sphinxcontrib-napoleon', 'sphinx_rtd_theme', + "autodoc-pydantic", ], 'tests': [ 'pytest >= 4.0.0', @@ -70,6 +71,7 @@ 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', ], zip_safe=False, long_description=long_description,