Skip to content

Commit 511631c

Browse files
release(ragbits-core): update to v1.1.0 (#710)
Co-authored-by: ds-ragbits-robot <[email protected]> Co-authored-by: Mateusz Hordyński <[email protected]>
1 parent bb0557c commit 511631c

File tree

17 files changed

+102
-22
lines changed

17 files changed

+102
-22
lines changed

packages/ragbits-agents/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## Unreleased
44

5+
## 1.1.0 (2025-07-09)
6+
7+
### Changed
8+
9+
- ragbits-core updated to version v1.1.0
10+
511
- Move a2a to extra dependencies (#703)
612
- Add support for MCP servers (#632)
713
- Add agent support for string prompts (#631)

packages/ragbits-agents/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "ragbits-agents"
3-
version = "1.0.0"
3+
version = "1.1.0"
44
description = "Building blocks for rapid development of GenAI applications"
55
readme = "README.md"
66
requires-python = ">=3.10"
@@ -31,7 +31,7 @@ classifiers = [
3131
"Topic :: Scientific/Engineering :: Artificial Intelligence",
3232
"Topic :: Software Development :: Libraries :: Python Modules",
3333
]
34-
dependencies = ["ragbits-core==1.0.0"]
34+
dependencies = ["ragbits-core==1.1.0"]
3535

3636
[project.optional-dependencies]
3737
a2a = [

packages/ragbits-chat/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## Unreleased
44

5+
## 1.1.0 (2025-07-09)
6+
7+
### Changed
8+
9+
- ragbits-core updated to version v1.1.0
10+
511
- Add configurable user setting in Ragbits UI (#692)
612
- Live updates support for Python api client(#683)
713
- Synchronous and asynchronous Python api client (#647)

packages/ragbits-chat/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "ragbits-chat"
3-
version = "1.0.0"
3+
version = "1.1.0"
44
description = "Building blocks for rapid development of GenAI applications"
55
readme = "README.md"
66
requires-python = ">=3.10"
@@ -31,7 +31,7 @@ classifiers = [
3131
"Topic :: Scientific/Engineering :: Artificial Intelligence",
3232
"Topic :: Software Development :: Libraries :: Python Modules",
3333
]
34-
dependencies = ["fastapi>=0.115.0,<1.0.0", "uvicorn>=0.31.0,<1.0.0", "ragbits-core==1.0.0", "httpx>=0.28.1,<1.0.0"]
34+
dependencies = ["fastapi>=0.115.0,<1.0.0", "uvicorn>=0.31.0,<1.0.0", "httpx>=0.28.1,<1.0.0", "ragbits-core==1.1.0"]
3535

3636
[project.urls]
3737
"Homepage" = "https://github.com/deepsense-ai/ragbits"

packages/ragbits-cli/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## Unreleased
44

5+
## 1.1.0 (2025-07-09)
6+
7+
### Changed
8+
9+
- ragbits-core updated to version v1.1.0
10+
511
## 1.0.0 (2025-06-04)
612

713
### Changed

packages/ragbits-cli/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "ragbits-cli"
3-
version = "1.0.0"
3+
version = "1.1.0"
44
description = "A CLI application for ragbits - building blocks for rapid development of GenAI applications"
55
readme = "README.md"
66
requires-python = ">=3.10"
@@ -31,7 +31,7 @@ classifiers = [
3131
"Topic :: Scientific/Engineering :: Artificial Intelligence",
3232
"Topic :: Software Development :: Libraries :: Python Modules",
3333
]
34-
dependencies = ["typer>=0.12.5,<1.0.0", "ragbits-core==1.0.0"]
34+
dependencies = ["typer>=0.12.5,<1.0.0", "ragbits-core==1.1.0"]
3535

3636
[project.urls]
3737
"Homepage" = "https://github.com/deepsense-ai/ragbits"

packages/ragbits-core/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
## 1.1.0 (2025-07-09)
6+
57
- Integrate Weaviate vector store (#347)
68
- Remove numpy dependency (#666)
79
- Fix typing in LLM generate_streaming (#628)

packages/ragbits-core/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "ragbits-core"
3-
version = "1.0.0"
3+
version = "1.1.0"
44
description = "Building blocks for rapid development of GenAI applications"
55
readme = "README.md"
66
requires-python = ">=3.10"

packages/ragbits-document-search/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## Unreleased
44

5+
## 1.1.0 (2025-07-09)
6+
7+
### Changed
8+
9+
- ragbits-core updated to version v1.1.0
10+
511
- feat: allow to pass custom configuration into docling parser (#690)
612

713
## 1.0.0 (2025-06-04)

packages/ragbits-document-search/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "ragbits-document-search"
3-
version = "1.0.0"
3+
version = "1.1.0"
44
description = "Document Search module for Ragbits"
55
readme = "README.md"
66
requires-python = ">=3.10"
@@ -31,7 +31,7 @@ classifiers = [
3131
"Topic :: Scientific/Engineering :: Artificial Intelligence",
3232
"Topic :: Software Development :: Libraries :: Python Modules",
3333
]
34-
dependencies = ["docling>=2.15.1,<3.0.0", "opencv-python>=4.11.0.86,<5.0.0.0", "rerankers>=0.6.1,<1.0.0", "filetype>=1.2.0,<2.0.0", "ragbits-core==1.0.0"]
34+
dependencies = ["docling>=2.15.1,<3.0.0", "opencv-python>=4.11.0.86,<5.0.0.0", "rerankers>=0.6.1,<1.0.0", "filetype>=1.2.0,<2.0.0", "ragbits-core==1.1.0"]
3535

3636
[project.urls]
3737
"Homepage" = "https://github.com/deepsense-ai/ragbits"

0 commit comments

Comments
 (0)