Skip to content

Commit b9c1bc3

Browse files
committed
Patch Update 1.3.3
### Fixed - **Python Docstring Cleaning**: (fixes #11) - **C-Style Comment Handling**:
1 parent c08cc4b commit b9c1bc3

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1616

1717
## [NextRelease]
1818

19+
## [1.3.3]
20+
1921
### Fixed
2022

2123
- **Python Docstring Cleaning**: Improved the `remove_agent_docstring` function to better handle Python docstrings by preserving manual content while removing auto-generated table of contents. The function now correctly identifies and removes only the auto-generated content while maintaining the structure of existing manual docstrings. (fixes #11)

agent_docstrings/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
Attributes:
88
__version__ (str): Current version of the *agent-docstrings* package.
99
"""
10-
__version__ = "1.3.2"
10+
__version__ = "1.3.3"

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "agent-docstrings"
7-
version = "1.3.2"
7+
version = "1.3.3"
88
description = "A command-line tool to auto-generate and update file-level docstrings summarizing classes and functions. Useful for maintaining a high-level overview of your files, especially in projects with code generated or modified by AI assistants."
99
readme = { file = "README.md", content-type = "text/markdown" }
1010
license = { file = "LICENSE" }
@@ -148,7 +148,7 @@ exclude_lines = [
148148
]
149149

150150
[tool.bumpversion]
151-
current_version = "1.3.2"
151+
current_version = "1.3.3"
152152
commit = false
153153
tag = false
154154

0 commit comments

Comments
 (0)