Skip to content

Commit

Permalink
v0.11.12 (#16159)
Browse files Browse the repository at this point in the history
  • Loading branch information
logan-markewich authored Sep 23, 2024
1 parent 66b1e86 commit caadc62
Show file tree
Hide file tree
Showing 6 changed files with 54 additions and 14 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# ChangeLog

## [2024-09-22]

### `llama-index-core` [0.11.12]

- Correct Pydantic warning(s) issed for llm base class (#16141)
- globally safe format prompt variables in strings with JSON (#15734)
- account for tools in prompt helper and response synthesizers (#16157)

### `llama-index-readers-google` [0.4.1]

- feat: add drive link to google drive reader metadata (#16156)

### `llama-index-readers-microsoft-sharepoint` [0.3.2]

- Add required_exts option to SharePoint reader (#16152)

### `llama-index-vector-stores-milvus` [0.2.4]

- Support user-defined schema in MilvusVectorStore (#16151)

## [2024-09-20]

### `llama-index-core` [0.11.11]
Expand Down
20 changes: 20 additions & 0 deletions docs/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# ChangeLog

## [2024-09-22]

### `llama-index-core` [0.11.12]

- Correct Pydantic warning(s) issed for llm base class (#16141)
- globally safe format prompt variables in strings with JSON (#15734)
- account for tools in prompt helper and response synthesizers (#16157)

### `llama-index-readers-google` [0.4.1]

- feat: add drive link to google drive reader metadata (#16156)

### `llama-index-readers-microsoft-sharepoint` [0.3.2]

- Add required_exts option to SharePoint reader (#16152)

### `llama-index-vector-stores-milvus` [0.2.4]

- Support user-defined schema in MilvusVectorStore (#16151)

## [2024-09-20]

### `llama-index-core` [0.11.11]
Expand Down
2 changes: 1 addition & 1 deletion llama-index-core/llama_index/core/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Init file of LlamaIndex."""

__version__ = "0.11.11"
__version__ = "0.11.12"

import logging
from logging import NullHandler
Expand Down
2 changes: 1 addition & 1 deletion llama-index-core/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ name = "llama-index-core"
packages = [{include = "llama_index"}]
readme = "README.md"
repository = "https://github.com/run-llama/llama_index"
version = "0.11.11"
version = "0.11.12"

[tool.poetry.dependencies]
SQLAlchemy = {extras = ["asyncio"], version = ">=1.4.49"}
Expand Down
20 changes: 10 additions & 10 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ name = "llama-index"
packages = [{from = "_llama-index", include = "llama_index"}]
readme = "README.md"
repository = "https://github.com/run-llama/llama_index"
version = "0.11.11"
version = "0.11.12"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
Expand All @@ -58,7 +58,7 @@ llama-index-agent-openai = "^0.3.4"
llama-index-readers-file = "^0.2.0"
llama-index-readers-llama-parse = ">=0.3.0"
llama-index-indices-managed-llama-cloud = ">=0.3.0"
llama-index-core = "^0.11.10"
llama-index-core = "^0.11.11"
llama-index-multi-modal-llms-openai = "^0.2.0"
llama-index-cli = "^0.3.1"
nltk = ">3.8.1" # avoids a CVE, temp until next release, should be in llama-index-core
Expand Down

0 comments on commit caadc62

Please sign in to comment.