Skip to content

Commit

Permalink
bump: version 0.8.10 → 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
RodrigoGonzalez committed Aug 4, 2023
1 parent 63d5640 commit 437f9e4
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 3 deletions.
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/flake8_custom_import_rules/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.8.8"
__version__ = "0.9.0"


def show_versions() -> None:
Expand Down

0 comments on commit 437f9e4

Please sign in to comment.