Skip to content

Commit 9c4eb89

Browse files
committed
Bump to 0.9.0
1 parent b62ea78 commit 9c4eb89

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

77
## [UNRELEASED]
8+
9+
## [0.9.0] - 2024-10-11
810
### Added
911
- add support for python 3.13
1012

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ repos:
4141
hooks:
4242
- id: flake8
4343
#args: [ --max-function-length, '100', --mfl-include-docstring, --mfl-include-comment-lines ]
44-
additional_dependencies: [ "flake8-max-function-length==0.8.0" ]
44+
additional_dependencies: [ "flake8-max-function-length==0.9.0" ]
4545
```
4646
4747
## Similar tools
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""A configurable flake8 plugin to enforce a maximum function/method length."""
22

3-
__version__ = "0.8.0"
3+
__version__ = "0.9.0"

flake8_max_function_length/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
class Plugin:
1111
name = "flake8-max-function-length"
12-
version = "0.8.0"
12+
version = "0.9.0"
1313

1414
def __init__(self, tree, file_tokens):
1515
self.tree = tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ name = "flake8_max_function_length"
4646
[tool.tbump]
4747

4848
[tool.tbump.version]
49-
current = "0.8.0"
49+
current = "0.9.0"
5050
regex = '''
5151
(?P<major>\d+)
5252
\.

0 commit comments

Comments
 (0)