File tree Expand file tree Collapse file tree 5 files changed +6
-4
lines changed
flake8_custom_error_messages Expand file tree Collapse file tree 5 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) .
66
77## [ UNRELEASED]
8+
9+ ## [ 0.1.0] - 2023-02-19
810### Added
911
1012- Customize error messages emitted by flake8 plugins
Original file line number Diff line number Diff line change 5858 ' DTZ005 Use django.utils.timezone.now() instead of datetime.now()' ,
5959 ' TST000 {original_message} For more info, check the styleguide at https://some-domain.com'
6060 ]
61- additional_dependencies : [ "flake8-custom-error-messages==0.0.1 " ]
61+ additional_dependencies : [ "flake8-custom-error-messages==0.1.0 " ]
6262` ` `
6363
6464## License
Original file line number Diff line number Diff line change 11"""A flake8 plugin to customize the error messages emitted by other flake8 plugins"""
22
3- __version__ = "0.0.1 "
3+ __version__ = "0.1.0 "
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ def after_init(self):
3535
3636class Plugin :
3737 name = "flake8-custom-error-messages"
38- version = "0.0.1 "
38+ version = "0.1.0 "
3939
4040 def __init__ (self , tree ):
4141 self .tree = tree
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ name = "flake8_custom_error_messages"
4646[tool .tbump ]
4747
4848[tool .tbump .version ]
49- current = " 0.0.1 "
49+ current = " 0.1.0 "
5050regex = '''
5151 (?P<major>\d+)
5252 \.
You can’t perform that action at this time.
0 commit comments