Skip to content

Commit 90ce5a5

Browse files
committed
Bump to 0.1.0
1 parent 6ed33db commit 90ce5a5

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.1.0] - 2023-02-19
810
### Added
911

1012
- Customize error messages emitted by flake8 plugins

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ repos:
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
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
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"

flake8_custom_error_messages/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def after_init(self):
3535

3636
class 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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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"
5050
regex = '''
5151
(?P<major>\d+)
5252
\.

0 commit comments

Comments
 (0)