diff --git a/CHANGELOG.md b/CHANGELOG.md index 955ff72..f770a18 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ Changelog ========= + +Version 2.0.1 (Sep 2, 2023) +-------------------------- +Changes: + +- 🐛 Fix: missing subdirectories for top-level submodules (#136) + + Version 2.0 (Sep 1, 2023) -------------------------- Changes: @@ -31,12 +39,14 @@ Changes: - ✨ Support function-valued default arguments (#119) - 🐛 Fix missing properties docstrings (#118) + Version 1.1 (Aug 30, 2023) -------------------------- Changes: - Added `--dry-run` CLI option to skip writing stubs stage (#114 ) + Version 1.0-dev (Aug 29, 2023) ------------------------------ ⚠️ Project was rewritten from scratch for `1.x`. This allowed me to address some long-standing issues, but I might diff --git a/setup.py b/setup.py index 1fcb18b..eaca039 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ maintainer_email="sergei.a.izmailov@gmail.com", description="PEP 561 type stubs generator for pybind11 modules", url="https://github.com/sizmailov/pybind11-stubgen", - version="2.0", + version="2.0.1", long_description=open("README.md").read(), long_description_content_type="text/markdown", license="BSD",