Skip to content

Commit d0390ba

Browse files
committed
Update version to 1.3.2
### Fixed - **Kotlin Header Preservation**
1 parent 51551fe commit d0390ba

3 files changed

Lines changed: 8 additions & 4 deletions

File tree

CHANGELOG.md

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

1717
## [NextRelease]
1818

19+
- **Something great**: for sure
20+
21+
## [1.3.2]
22+
1923
### Fixed
2024

2125
- **Kotlin Header Preservation**: Fixed a bug where multi-line block comments (`/** ... */`) in Kotlin files were not correctly preserved, leading to malformed docstrings. The header parsing logic now correctly identifies and preserves these comment blocks. (Fixes #9)

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.1"
10+
__version__ = "1.3.2"

pyproject.toml

Lines changed: 3 additions & 3 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.1"
7+
version = "1.3.2"
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.1"
151+
current_version = "1.3.2"
152152
commit = false
153153
tag = false
154154

@@ -165,4 +165,4 @@ replace = '__version__ = "{new_version}"'
165165
[[tool.bumpversion.files]]
166166
filename = "CHANGELOG.md"
167167
search = "## [{current_version}]"
168-
replace = "## [{new_version}]\n\n### Header\n\n- **subtitle**:\n - text\n\n## [{current_version}]"
168+
replace = "## [{new_version}]\n\n### Header\n\n- **subtitle**: describtion\n\n## [{current_version}]"

0 commit comments

Comments
 (0)