Skip to content

Commit 64f8fab

Browse files
bump: version 1.0.0 → 1.1.0
1 parent 440c0dd commit 64f8fab

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## v1.1.0 (2023-08-20)
2+
3+
### Feat
4+
5+
- **rule-checker**: updated docstrings (#170)
6+
17
## v1.0.0 (2023-08-19)
28

39
### Feat

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "flake8_custom_import_rules"
3-
version = "1.0.0"
3+
version = "1.1.0"
44
description = "A Flake8 plugin that enforces custom import rules, allowing users to define and maintain clean and consistent import organization across their Python projects."
55
readme = "README.rst"
66
authors = ["Rodrigo Gonzalez <[email protected]>"]
@@ -96,7 +96,7 @@ mkdocstrings = {extras = ["optimize", "python"], version = "^0.22.0"}
9696

9797
[tool.commitizen]
9898
name = "cz_conventional_commits"
99-
version = "1.0.0"
99+
version = "1.1.0"
100100
tag_format = "v$version"
101101
version_type = "semver"
102102
update_changelog_on_bump = true

src/flake8_custom_import_rules/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "1.0.0"
1+
__version__ = "1.1.0"
22

33

44
def show_versions() -> None:

0 commit comments

Comments
 (0)