Skip to content

Commit 4c43e68

Browse files
Logan/v0.10.15 (#11551)
1 parent 9c867b6 commit 4c43e68

File tree

6 files changed

+80
-61
lines changed

6 files changed

+80
-61
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# ChangeLog
22

3+
## [0.10.15] - 2024-03-01
4+
5+
### New Features
6+
7+
- Added FeishuWikiReader (#11491)
8+
- Added videodb retriever integration (#11463)
9+
- Added async to opensearch vector store (#11513)
10+
- New LangFuse one-click callback handler (#11324)
11+
12+
### Bug Fixes / Nits
13+
14+
- Fixed deadlock issue with async chat streaming (#11548)
15+
- Improved hidden file check in SimpleDirectoryReader (#11496)
16+
- Fixed null values in document metadata when using SimpleDirectoryReader (#11501)
17+
- Fix for sqlite utils in jsonalyze query engine (#11519)
18+
- Added base url and timeout to ollama multimodal LLM (#11526)
19+
- Updated duplicate handling in query fusion retriever (#11542)
20+
- Fixed bug in kg indexx struct updating (#11475)
21+
322
## [0.10.14] - 2024-02-28
423

524
### New Features

llama-index-core/llama_index/core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Init file of LlamaIndex."""
22

3-
__version__ = "0.10.14"
3+
__version__ = "0.10.15"
44

55
import logging
66
from logging import NullHandler

llama-index-core/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ name = "llama-index-core"
4343
packages = [{include = "llama_index"}]
4444
readme = "README.md"
4545
repository = "https://github.com/run-llama/llama_index"
46-
version = "0.10.14.post1"
46+
version = "0.10.15"
4747

4848
[tool.poetry.dependencies]
4949
SQLAlchemy = {extras = ["asyncio"], version = ">=1.4.49"}

llama-index-integrations/multi_modal_llms/llama-index-multi-modal-llms-ollama/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ exclude = ["**/BUILD"]
2727
license = "MIT"
2828
name = "llama-index-multi-modal-llms-ollama"
2929
readme = "README.md"
30-
version = "0.1.2"
30+
version = "0.1.3"
3131

3232
[tool.poetry.dependencies]
3333
python = ">=3.8.1,<4.0"

poetry.lock

Lines changed: 56 additions & 56 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ name = "llama-index"
4444
packages = [{from = "_llama-index", include = "llama_index"}]
4545
readme = "README.md"
4646
repository = "https://github.com/run-llama/llama_index"
47-
version = "0.10.14"
47+
version = "0.10.15"
4848

4949
[tool.poetry.dependencies]
5050
python = ">=3.8.1,<4.0"
@@ -57,7 +57,7 @@ llama-index-agent-openai = "^0.1.4"
5757
llama-index-readers-file = "^0.1.4"
5858
llama-index-readers-llama-parse = "^0.1.2"
5959
llama-index-indices-managed-llama-cloud = "^0.1.2"
60-
llama-index-core = "^0.10.14"
60+
llama-index-core = "^0.10.15"
6161
llama-index-multi-modal-llms-openai = "^0.1.3"
6262
llama-index-cli = "^0.1.2"
6363

0 commit comments

Comments
 (0)