Skip to content

Commit 8f76b1b

Browse files
committed
Bump to 0.10.0
1 parent 3569ce1 commit 8f76b1b

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.10.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
@@ -35,7 +35,7 @@ repos:
3535
rev: '6.0.0'
3636
hooks:
3737
- id: flake8
38-
additional_dependencies: [ "flake8-stash==0.9.0" ]
38+
additional_dependencies: [ "flake8-stash==0.10.0" ]
3939
```
4040
4141
## License

flake8_stash/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""A collection of flake8 checks."""
22

3-
__version__ = "0.9.0"
3+
__version__ = "0.10.0"

flake8_stash/plugin.py

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

66
class Plugin:
77
name = "flake8-stash"
8-
version = "0.9.0"
8+
version = "0.10.0"
99

1010
def __init__(self, tree):
1111
self.tree = tree

pyproject.toml

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

4949
[tool.tbump.version]
50-
current = "0.9.0"
50+
current = "0.10.0"
5151
regex = '''
5252
(?P<major>\d+)
5353
\.

0 commit comments

Comments
 (0)