diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c9bd91..5bba84b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. +## [0.2.3](https://github.com/zen-xu/plan_d/compare/0.2.2..0.2.3) - 2024-12-31 + +### 🐛 Bug Fixes + +- Resolve imports error when python<3.11 ([#53](https://github.com/zen-xu/plan_d/issues/53)) - ([6c46ea0](https://github.com/zen-xu/plan_d/commit/6c46ea0db78f8080100882cb95502ea0df2f22f8)) + ## [0.2.2](https://github.com/zen-xu/plan_d/compare/0.2.1..0.2.2) - 2024-11-01 ### 🚜 Refactor diff --git a/plan_d/__init__.py b/plan_d/__init__.py index 96b8592..3647258 100644 --- a/plan_d/__init__.py +++ b/plan_d/__init__.py @@ -1,7 +1,7 @@ from __future__ import annotations -__version__ = "0.2.2" +__version__ = "0.2.3" __authors__ = [ "ZhengYu, Xu ", ] diff --git a/pyproject.toml b/pyproject.toml index 1a71fa0..daded1d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ authors = ["ZhengYu, Xu "] description = "Python Language's Another Nonpareil remote Debugger" name = "plan-d" readme = "README.md" -version = "0.2.2" # version anchor +version = "0.2.3" # version anchor license = "MIT" keywords = ["debugger", "remote", "ipython"] classifiers = [ @@ -44,7 +44,7 @@ requires = ["poetry-core"] [tool.commitizen] bump_message = "chore(release): bump version $current_version -> $new_version" pre_bump_hooks = ["./update-changelog.sh"] -version = "0.2.2" # version anchor +version = "0.2.3" # version anchor version_files = ["pyproject.toml:version anchor", "plan_d/__init__.py"] [tool.ruff]