From 8b86677565f905f0be22b0cb2288c74b44319905 Mon Sep 17 00:00:00 2001 From: "v.kuvaitsev" Date: Thu, 21 Mar 2024 19:38:28 +0300 Subject: [PATCH] Upgrade lib version --- CHANGELOG.md | 9 +++++++++ flake8_class_attributes_order/__init__.py | 2 +- requirements_dev.txt | 2 +- tests/conftest.py | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..6167de6 --- /dev/null +++ b/CHANGELOG.md @@ -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 diff --git a/flake8_class_attributes_order/__init__.py b/flake8_class_attributes_order/__init__.py index 8ce9b36..d93b5b2 100644 --- a/flake8_class_attributes_order/__init__.py +++ b/flake8_class_attributes_order/__init__.py @@ -1 +1 @@ -__version__ = '0.1.3' +__version__ = '0.2.3' diff --git a/requirements_dev.txt b/requirements_dev.txt index f1f6071..015044a 100644 --- a/requirements_dev.txt +++ b/requirements_dev.txt @@ -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 diff --git a/tests/conftest.py b/tests/conftest.py index a2477d4..5c45ed9 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -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)