Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [NextRelease]

### Header

- **subtitle**: describtion

## [1.3.5]

### Added

- **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.
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ The release process is partially automated.
2. Update the version using `bump-my-version`:
```bash
# For a patch, minor, or major release
bump-my-version patch/minor/major
bump-my-version bump patch/minor/major
```
This command will update the version in `pyproject.toml` and update the `CHANGELOG.md`, replacing `[NextRelease]` with the new version tag.
3. Commit the version bump: `git commit -am "chore: release v.x.y.z"`
Expand Down
2 changes: 1 addition & 1 deletion agent_docstrings/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
Attributes:
__version__ (str): Current version of the *agent-docstrings* package.
"""
__version__ = "1.3.4"
__version__ = "1.3.5"
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "agent-docstrings"
version = "1.3.4"
version = "1.3.5"
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."
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
Expand Down Expand Up @@ -148,7 +148,7 @@ exclude_lines = [
]

[tool.bumpversion]
current_version = "1.3.4"
current_version = "1.3.5"
commit = false
tag = false

Expand Down
Loading