Skip to content

Commit eb5ef85

Browse files
authored
Bumped version to v0.1.3 (#381)
* Bumped version to v0.1.3 * Removed warning from README.md.
1 parent 8c1bd49 commit eb5ef85

5 files changed

Lines changed: 67 additions & 67 deletions

File tree

CHANGELOG.md

Lines changed: 4 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.1.3] - 2025-05-20
11+
1012
### Added
1113

1214
- Added mapping for `yaml` language for `.yaml` and `.yml` extensions.
@@ -609,7 +611,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
609611

610612
- Initial release of the `daiv` project.
611613

612-
[Unreleased]: https://github.com/srtab/daiv/compare/v0.1.2...HEAD
614+
[Unreleased]: https://github.com/srtab/daiv/compare/v0.1.3...HEAD
615+
[0.1.3]: https://github.com/srtab/daiv/compare/v0.1.2...v0.1.3
613616
[0.1.2]: https://github.com/srtab/daiv/compare/v0.1.1...v0.1.2
614617
[0.1.1]: https://github.com/srtab/daiv/compare/v0.1.0...v0.1.1
615618
[0.1.0]: https://github.com/srtab/daiv/compare/v0.1.0-beta.5...v0.1.0

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@ DAIV is an open-source automation assistant designed to enhance developer produc
1111
- **Pipeline Failures**: Monitoring CI/CD logs and applying fixes automatically when a pipeline fails.
1212
- **Codebase Chat**: A ChatGPT-like experience to chat with your codebase and get answers.
1313

14-
> [!WARNING]
15-
> **Note:** DAIV is currently in a **beta** stage. It is **not recommended for production use** at this time. Bugs or performance issues are expected, and contributions are welcome!
16-
1714
## Key Features
1815

1916
- 🚀 **Automated Issue Resolution**: When an issue is created in your repository, DAIV can parse the description, propose a step-by-step plan, and, after human approval, execute code changes and open a merge request for you to review.

daiv/daiv/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
# Django starts so that shared_task will use this app.
33
from .celeryapp import app as celery_app
44

5-
__version__ = "0.1.2"
5+
__version__ = "0.1.3"
66

77
__all__ = ("celery_app",)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "daiv"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
description = "Developer assistant automating code issues, reviews, and pipeline fixes using AI Agents."
55
readme = "README.md"
66
license = { file = "LICENSE" }

0 commit comments

Comments
 (0)