Skip to content

Commit

Permalink
Upgrade lib version
Browse files Browse the repository at this point in the history
  • Loading branch information
v.kuvaitsev committed Mar 21, 2024
1 parent a28e687 commit 8b86677
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@

### Version 0.2.3
- Add protected functions support

### Version 0.1.3
- create valid error message for special method
- Fixed flake8 errors
- Add python 3.9, 3.10 support
- gitlab actions instead of travis
2 changes: 1 addition & 1 deletion flake8_class_attributes_order/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.1.3'
__version__ = '0.2.3'
2 changes: 1 addition & 1 deletion requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ flake8-eradicate==1.2.0
flake8-fixme==1.1.1
flake8-annotations-complexity==0.0.6
flake8-variables-names==0.0.5
flake8-class-attributes-order==0.1.2
flake8-class-attributes-order==0.1.3
flake8-broken-line==0.4.0
flake8-tidy-imports==4.6.0
flake8-typing-imports==1.9.0
Expand Down
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def run_validator_for_test_file(filename, max_annotations_complexity=None,
raw_content = file_handler.read()
tree = ast.parse(raw_content)

options = OptionManager('flake8_class_attributes_order', '0.1.3')
options = OptionManager('flake8_class_attributes_order', '0.2.3')
options.use_class_attributes_order_strict_mode = strict_mode
options.class_attributes_order = attributes_order
ClassAttributesOrderChecker.parse_options(options)
Expand Down

0 comments on commit 8b86677

Please sign in to comment.