diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d0b45c1..a6d53ebf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v1.11.2 (2022-11-10) +### Fix +* **deps:** Update dependency libcst to v0.4.8 ([#699](https://github.com/browniebroke/django-codemod/issues/699)) ([`1fe101e`](https://github.com/browniebroke/django-codemod/commit/1fe101e748df879c1fc27546c4187b42c7923a0e)) + ## v1.11.1 (2022-11-07) ### Fix * Officially support Python 3.11 (no code changes were required) ([#696](https://github.com/browniebroke/django-codemod/issues/696)) ([`2295357`](https://github.com/browniebroke/django-codemod/commit/2295357842b7cb7d49393729786644a1704ca256)) diff --git a/pyproject.toml b/pyproject.toml index e3b84773..d329d8f1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "django-codemod" -version = "1.11.1" +version = "1.11.2" description = "A command line tool to automatically fix Django deprecations." authors = ["Bruno Alla "] license = "MIT" diff --git a/src/django_codemod/__init__.py b/src/django_codemod/__init__.py index c3fa782c..e9139dfc 100644 --- a/src/django_codemod/__init__.py +++ b/src/django_codemod/__init__.py @@ -1 +1 @@ -__version__ = "1.11.1" +__version__ = "1.11.2"