diff --git a/calcipy/__init__.py b/calcipy/__init__.py index 8a6caa73..a7d9c377 100644 --- a/calcipy/__init__.py +++ b/calcipy/__init__.py @@ -2,7 +2,7 @@ from ._runtime_type_check_setup import configure_runtime_type_checking_mode -__version__ = '4.0.0' +__version__ = '4.1.0' __pkg_name__ = 'calcipy' configure_runtime_type_checking_mode() diff --git a/docs/docs/CODE_TAG_SUMMARY.md b/docs/docs/CODE_TAG_SUMMARY.md index 16d993f1..f3ba85cc 100644 --- a/docs/docs/CODE_TAG_SUMMARY.md +++ b/docs/docs/CODE_TAG_SUMMARY.md @@ -7,8 +7,7 @@ | TODO | Handle ">=3.0.0,<4" | 2024-10-05 | [calcipy/experiments/sync_package_dependencies.py:48](https://github.com/KyleKing/calcipy/blame/22a490ebc56994f3269b7a83071e88b8b3fd5f89/calcipy/experiments/sync_package_dependencies.py#L48) | | TODO | Add unit test | 2024-07-06 | [calcipy/tasks/pack.py:57](https://github.com/KyleKing/calcipy/blame/e45ecadfa5b994d9c0a2a47138fa0e083261e3eb/calcipy/tasks/pack.py#L57) | | TODO | Add unit test | 2024-07-06 | [calcipy/tasks/pack.py:91](https://github.com/KyleKing/calcipy/blame/e45ecadfa5b994d9c0a2a47138fa0e083261e3eb/calcipy/tasks/pack.py#L91) | -| PLANNED | finish updating docstrings for Returns | 2024-10-08 | [pyproject.toml:153](https://github.com/KyleKing/calcipy/blame/main -/pyproject.toml#L153) | +| PLANNED | finish updating docstrings for Returns | 2024-10-08 | [pyproject.toml:161](https://github.com/KyleKing/calcipy/blame/9cf3c6d2d9820cec475d35bdb7c53fc83627a4b2/pyproject.toml#L161) | | TODO | Capture logging output and check... | 2023-02-19 | [tests/check_for_stale_packages/test_check_for_stale_packages.py:64](https://github.com/KyleKing/calcipy/blame/a8b69e7b04d9b15eabff8897f2de7703898c2afc/tests/check_for_stale_packages/test_check_for_stale_packages.py#L63) | | TODO | Capture logging output and check... | 2023-02-19 | [tests/check_for_stale_packages/test_check_for_stale_packages.py:88](https://github.com/KyleKing/calcipy/blame/3f42ad855eb7024ff48af35d496633a87d4a14ac/tests/check_for_stale_packages/test_check_for_stale_packages.py#L26) | | PLANNED | Add unit test for sync_package_dependencies.py | 2024-10-07 | [tests/experiments/test_sync_package_dependencies.py:1](https://github.com/KyleKing/calcipy/blame/dbe495b3653edb2fd06f9e3865619707d941ed87/tests/experiments/test_sync_package_dependencies.py#L1) | diff --git a/pyproject.toml b/pyproject.toml index edbb7f0b..e0f6b2c6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ build-backend = "poetry.core.masonry.api" requires = ["poetry-core"] [tool.commitizen] -version = "4.0.0" +version = "4.1.0" version_files = ["calcipy/__init__.py:^__version", "pyproject.toml:^version"] [tool.mypy] @@ -49,7 +49,7 @@ maintainers = [] name = "calcipy" readme = "docs/README.md" repository = "https://github.com/kyleking/calcipy" -version = "4.0.0" +version = "4.1.0" [tool.poetry.dependencies] python = "^3.9.13"