From 437f9e457de90b0e3134a5e7803ad17a23d3175a Mon Sep 17 00:00:00 2001 From: RodrigoGonzalez Date: Fri, 4 Aug 2023 18:02:55 -0400 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.8.10=20=E2=86=92=200.9.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 34 ++++++++++++++++++++++ pyproject.toml | 4 +-- src/flake8_custom_import_rules/__init__.py | 2 +- 3 files changed, 37 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f99cd1..444cd1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,37 @@ +## v0.9.0 (2023-08-04) + +### Fix + +- **pyproject**: fix flake8 extension (#108) +- **node-visitor**: stdlib_list should be imported locally where it is used (#106) +- **restricted-visitor**: refactor get strings functions (#84) +- **visitor**: get_module_name_from_filename uses filename not file_path (#83) +- **default**: fix default settings (#77) + +### Refactor + +- **file-utils**: remove unused functions +- **node-utils**: remove unused function (#111) +- **pyproject**: add project info (#109) +- **dependencies**: remove pandas and numpy dependencies (#96) +- **example_repos**: remove pendulum dependency (#95) +- **readme**: update intro paragraph, remove unnecessary comments (#88) +- **error-codes**: make error code checks using set instead of list (#86) +- **core**: refactor to make code easier to follow (#85) +- **help-strings**: add error codes to flake8 help strings (#82) +- **defaults**: update help strings (#81) +- **main**: update readme, change log to debug (#80) +- **restricted-imports**: add support for import restrictions (#79) +- **defaults**: update converters and add test cases (#78) +- **import-rules**: update import rules to implement restricted i… (#76) + +## v0.8.10 (2023-08-04) + +### Refactor + +- **file-utils**: remove unused functions +- **node-utils**: remove unused function (#111) + ## v0.8.9 (2023-08-04) ### Fix diff --git a/pyproject.toml b/pyproject.toml index 54bfb80..2ee8010 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "flake8_custom_import_rules" -version = "0.8.9" +version = "0.9.0" description = "A Flake8 plugin that enforces custom import rules, allowing users to define and maintain clean and consistent import organization across their Python projects." readme = "README.rst" authors = ["Rodrigo Gonzalez "] @@ -83,7 +83,7 @@ covdefaults = "^2.3.0" [tool.commitizen] name = "cz_conventional_commits" -version = "0.8.9" +version = "0.9.0" tag_format = "v$version" version_type = "semver" update_changelog_on_bump = true diff --git a/src/flake8_custom_import_rules/__init__.py b/src/flake8_custom_import_rules/__init__.py index 5dd5492..4e8bbf0 100644 --- a/src/flake8_custom_import_rules/__init__.py +++ b/src/flake8_custom_import_rules/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.8.8" +__version__ = "0.9.0" def show_versions() -> None: