Skip to content

Commit 04b21b5

Browse files
authored
Bumped version to v0.1.0-beta.5 (#310)
1 parent fad9511 commit 04b21b5

File tree

4 files changed

+232
-219
lines changed

4 files changed

+232
-219
lines changed

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.0-beta.5] - 2025-04-15
11+
1012
### Added
1113

1214
- Added support for `HuggingFace` and `VoyageAI` embeddings models.
@@ -543,7 +545,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
543545

544546
- Initial release of the `daiv` project.
545547

546-
[Unreleased]: https://github.com/srtab/daiv/compare/v0.1.0-beta.4...HEAD
548+
[Unreleased]: https://github.com/srtab/daiv/compare/v0.1.0-beta.5...HEAD
549+
[0.1.0-beta.5]: https://github.com/srtab/daiv/compare/v0.1.0-beta.4...v0.1.0-beta.5
547550
[0.1.0-beta.4]: https://github.com/srtab/daiv/compare/v0.1.0-beta.3...v0.1.0-beta.4
548551
[0.1.0-beta.3]: https://github.com/srtab/daiv/compare/v0.1.0-beta.2...v0.1.0-beta.3
549552
[0.1.0-beta.2]: https://github.com/srtab/daiv/compare/v0.1.0-beta.1...v0.1.0-beta.2

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.4"
5+
__version__ = "0.1.0-beta.5"
66

77
__all__ = ("celery_app",)

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "daiv"
3-
version = "0.1.0-beta.4"
3+
version = "0.1.0-beta.5"
44
description = "Developer assistant automating code issues, reviews, and pipeline fixes using AI Agents."
55
readme = "README.md"
66
license = { file = "LICENSE" }
@@ -19,7 +19,7 @@ classifiers = [
1919
dependencies = [
2020
"celery[redis]==5.5.1",
2121
"django==5.2",
22-
"django-extensions==4",
22+
"django-extensions==4.1",
2323
"django-ninja==1.4.1",
2424
"django-split-settings==1.3.2",
2525
"duckduckgo-search==8",
@@ -32,9 +32,9 @@ dependencies = [
3232
"langchain[anthropic,community,google-genai,openai,huggingface]==0.3.23",
3333
"langchain-text-splitters==0.3.8",
3434
"langchain-voyageai==0.1.4",
35-
"langgraph==0.3.27",
35+
"langgraph==0.3.30",
3636
"langgraph-checkpoint-postgres==2.0.19",
37-
"langsmith==0.3.28",
37+
"langsmith==0.3.31",
3838
"pgvector==0.4",
3939
"psycopg[pool]==3.2.6",
4040
"pydantic==2.11.3",
@@ -43,7 +43,7 @@ dependencies = [
4343
"python-gitlab==5.6",
4444
"pyyaml==6.0.2",
4545
"redis==5.2.1",
46-
"sentry-sdk==2.25.1",
46+
"sentry-sdk==2.26.1",
4747
"tantivy==0.22.2",
4848
"tree-sitter==0.21.3",
4949
"tree-sitter-languages==1.10.2",
@@ -70,7 +70,7 @@ dev = [
7070
"pytest-xdist==3.6.1",
7171
"python-dotenv==1.0.1",
7272
"rich==14",
73-
"ruff==0.11.4",
73+
"ruff==0.11.5",
7474
"types-pyyaml==6.0.12.20250402",
7575
"watchfiles==1.0.5",
7676
]

0 commit comments

Comments
 (0)