Skip to content

Commit 51c6fda

Browse files
authored
fix: handler config (#84)
1 parent e9e6899 commit 51c6fda

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ default = "semantic-release <semantic-release>"
114114

115115
[tool.semantic_release.commit_parser_options]
116116
minor_tags = ["feat"]
117-
patch_tags = ["fix", "perf"]
117+
patch_tags = ["fix", "perf", "patch"]
118118
other_allowed_tags = ["build", "chore", "ci", "docs", "style", "refactor", "test"]
119119
allowed_tags = ["feat", "fix", "perf", "build", "chore", "ci", "docs", "style", "refactor", "test"]
120120
default_bump_level = 0

src/mkdocstrings_handlers/matlab/handler.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -377,8 +377,6 @@ def get_handler(
377377
theme: str,
378378
custom_templates: str | None = None,
379379
config_file_path: str | None = None,
380-
paths: list[str] | None = None,
381-
paths_recursive: bool = False,
382380
**config: Any,
383381
) -> MatlabHandler:
384382
"""
@@ -400,8 +398,7 @@ def get_handler(
400398
theme=theme,
401399
custom_templates=custom_templates,
402400
config_file_path=config_file_path,
403-
paths=paths,
404-
paths_recursive=paths_recursive,
401+
**config['handler_config']
405402
)
406403

407404

0 commit comments

Comments
 (0)