From f3e7320f40c16d7e3f16da1f14d8113ba64777ff Mon Sep 17 00:00:00 2001 From: Elifarley Date: Sat, 12 Oct 2024 15:43:53 -0300 Subject: [PATCH] Updated dependency: cedarscript-ast-parser>=0.2.2 --- pyproject.toml | 2 +- src/cedarscript_editor/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 64612d7..76cff4d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,7 +23,7 @@ classifiers = [ ] keywords = ["cedarscript", "code-editing", "refactoring", "code-analysis", "sql-like", "ai-assisted-development"] dependencies = [ - "cedarscript-ast-parser>=0.2.1", + "cedarscript-ast-parser>=0.2.2", "rope>=1.13.0" ] requires-python = ">=3.8" diff --git a/src/cedarscript_editor/__init__.py b/src/cedarscript_editor/__init__.py index cf7c7f3..22a64b8 100644 --- a/src/cedarscript_editor/__init__.py +++ b/src/cedarscript_editor/__init__.py @@ -1,6 +1,6 @@ from cedarscript_editor.cedarscript_editor import CEDARScriptEditor -__version__ = "0.2.1" +__version__ = "0.2.2" __all__ = ["CEDARScriptEditor"]