Skip to content

Commit 38af659

Browse files
authored
Bumped version to v0.1.0-beta.4 (#292)
* Bumped version to v0.1.0-beta.4 * Fixed lock file.
1 parent f7a851a commit 38af659

6 files changed

Lines changed: 10 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 5 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.0-beta.4] - 2025-04-06
11+
1012
### Changed
1113

1214
- Increased `max_tokens` to `4096` for `Anthropic` models.
@@ -30,6 +32,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3032
- Command parameter `base_url` on `setup_webhooks` was declared required with a default value, forcing to pass it on every call. Now it's not required and will use the value of `DAIV_EXTERNAL_URL` if not provided.
3133
- Date and time provided to prompts were defined at compilation time, leading to a fixed date and time on all prompts. Now it's defined at runtime to provide the correct date and time for each execution.
3234
- CodebaseChat tool calls were being shown outside <thinking> tags on OpenWebUI, polluting the UI.
35+
- Images were not being extracted from the issue description, leading to hallucinations.
3336

3437
## [0.1.0-beta.3] - 2025-03-23
3538

@@ -526,7 +529,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
526529

527530
- Initial release of the `daiv` project.
528531

529-
[Unreleased]: https://github.com/srtab/daiv/compare/v0.1.0-beta.3...HEAD
532+
[Unreleased]: https://github.com/srtab/daiv/compare/v0.1.0-beta.4...HEAD
533+
[0.1.0-beta.4]: https://github.com/srtab/daiv/compare/v0.1.0-beta.3...v0.1.0-beta.4
530534
[0.1.0-beta.3]: https://github.com/srtab/daiv/compare/v0.1.0-beta.2...v0.1.0-beta.3
531535
[0.1.0-beta.2]: https://github.com/srtab/daiv/compare/v0.1.0-beta.1...v0.1.0-beta.2
532536
[0.1.0-beta.1]: https://github.com/srtab/daiv/compare/v0.1.0-alpha.22...v0.1.0-beta.1

daiv/automation/agents/plan_and_execute/prompts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
1111
Before you begin the analysis, make sure that the user's request is completely clear. If any part of the request is ambiguous or unclear, ALWAYS ask for clarification rather than making assumptions.
1212
13-
When analyzing and developing your plan, do not rely on your internal or prior knowledge. Instead, base all conclusions and recommendations strictly on verifiable, factual information from the codebase. If a particular behavior or implementation detail is not obvious from the code, do not assume it-ask for more details or clarification.
13+
When analyzing and developing your plan, do not rely on your internal or prior knowledge. Instead, base all conclusions and recommendations strictly on verifiable, factual information from the codebase. If a particular behavior or implementation detail is not obvious from the user request or code, do not assume it or infer it, ask for more details or clarification.
1414
1515
<tool_calling>
1616
You have tools at your disposal to understand the user requests and outline a plan. Follow these rules regarding tool calls:

daiv/automation/agents/review_addressor/prompts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103
104104
Before you begin the analysis, make sure that the user's request is completely clear. If any part of the request is ambiguous or unclear, ALWAYS ask for clarification rather than making assumptions.
105105
106-
When analyzing and developing your plan, do not rely on your internal or prior knowledge. Instead, base all conclusions and recommendations strictly on verifiable, factual information from the codebase. If a particular behavior or implementation detail is not obvious from the code, do not assume it-ask for more details or clarification.
106+
When analyzing and developing your plan, do not rely on your internal or prior knowledge. Instead, base all conclusions and recommendations strictly on verifiable, factual information from the codebase. If a particular behavior or implementation detail is not obvious from the user request or code, do not assume it or infer it, ask for more details or clarification.
107107
108108
<tool_calling>
109109
You have tools at your disposal to understand the diff hunk and comment, and to outline a plan. Follow these rules regarding tool calls:

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.0-beta.3"
5+
__version__ = "0.1.0-beta.4"
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.0-beta.3"
3+
version = "0.1.0-beta.4"
44
description = "Developer assistant automating code issues, reviews, and pipeline fixes using AI Agents."
55
readme = "README.md"
66
license = { file = "LICENSE" }

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)