Skip to content

Commit 4803c27

Browse files
committed
bump: version 0.5.0
1 parent d984689 commit 4803c27

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.5.0] - 2026-02-13
11+
1012
### Added
1113
- 🔍 **Semantic CLI Suggestions**: Unknown CLI options now suggest the closest valid alternative (e.g., `--exclude` → "Did you mean: `--ignore`?")
1214
- 📂 **Multiple Directories Support**: Process multiple directories in a single command (`repomix src lib tests`), with root-labeled file trees for multi-root output
@@ -22,7 +24,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2224
- 🔧 **Type Checker Migration**: Replaced pyright with ty (from Astral/Ruff team) for faster, more accurate type checking
2325
- 🧹 **Code Quality**: Applied ruff auto-fixes across codebase (`Optional[X]``X | None`), fixed `raise` without `from`, deprecated API usage
2426
- 📦 **Type Safety**: Improved type annotations with `Sequence` for covariant parameters and `cast` for dict unpacking patterns
25-
2627
## [0.4.1] - 2026-01-29
2728

2829
### Fixed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "repomix"
3-
version = "0.4.1"
3+
version = "0.5.0"
44
description = "A tool for analyzing and summarizing code repositories"
55
authors = [{ name = "Anderson", email = "andersonby@163.com" }]
66
dependencies = [

src/repomix/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
get_global_directory,
1111
)
1212

13-
__version__ = "0.4.1"
13+
__version__ = "0.5.0"
1414
__all__ = [
1515
"RepoProcessor",
1616
"RepoProcessorResult",

0 commit comments

Comments
 (0)