Skip to content
Closed
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
27 changes: 25 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added
- (Add new features here before release)

### Changed
- (Add changes here before release)

### Fixed
- (Add bug fixes here before release)

## [0.1.1] - 2025-08-12

### Changed
- Enhanced code quality and formatting (PEP8, type hints, black formatting)
- Added pre-commit hooks for automated code quality checks
- Simplified dependency management with uv
- Streamlined requirements files structure
- Improved development workflow and tooling

### Fixed
- Fixed flake8 and mypy compliance issues
- Resolved line length and formatting inconsistencies

## [0.1.0] - 2025-07-20

### Added
Expand Down Expand Up @@ -40,5 +62,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Real-world examples for web APIs, microservices, and plugins
- Development setup and contribution guidelines

[Unreleased]: https://github.com/eowl/action-dispatch/compare/v1.0.0...HEAD
[1.0.0]: https://github.com/eowl/action-dispatch/releases/tag/v1.0.0
[Unreleased]: https://github.com/eowl/action-dispatch/compare/v0.1.1...HEAD
[0.1.1]: https://github.com/eowl/action-dispatch/releases/tag/v0.1.1
[0.1.0]: https://github.com/eowl/action-dispatch/releases/tag/v0.1.0
2 changes: 1 addition & 1 deletion action_dispatch/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
InvalidDimensionError,
)

__version__ = "0.1.0"
__version__ = "0.1.1"
__author__ = "Eowl"
__email__ = "eowl@me.com"

Expand Down
Loading