Skip to content

Commit efb4ac6

Browse files
authored
Post-Release: Merge master back into dev
2 parents 7a02cd2 + bef6a7f commit efb4ac6

4 files changed

Lines changed: 10 additions & 4 deletions

File tree

CHANGELOG.md

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

1717
## [NextRelease]
1818

19+
### Header
20+
21+
- **subtitle**: describtion
22+
23+
## [1.3.5]
24+
1925
### Added
2026

2127
- **Placeholder-Based Line Numbering**: Implemented a new placeholder system (`OFFSET_PLACEHOLDER`) for calculating line numbers in generated headers. This ensures deterministic line numbering by first generating headers with placeholders, then calculating the actual offset based on the final header size, and finally replacing placeholders with accurate line numbers.

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ The release process is partially automated.
9595
2. Update the version using `bump-my-version`:
9696
```bash
9797
# For a patch, minor, or major release
98-
bump-my-version patch/minor/major
98+
bump-my-version bump patch/minor/major
9999
```
100100
This command will update the version in `pyproject.toml` and update the `CHANGELOG.md`, replacing `[NextRelease]` with the new version tag.
101101
3. Commit the version bump: `git commit -am "chore: release v.x.y.z"`

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.4"
10+
__version__ = "1.3.5"

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.4"
7+
version = "1.3.5"
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.4"
151+
current_version = "1.3.5"
152152
commit = false
153153
tag = false
154154

0 commit comments

Comments
 (0)