Skip to content

Commit

Permalink
v0.10.55 (#14709)
Browse files Browse the repository at this point in the history
  • Loading branch information
logan-markewich committed Jul 12, 2024
1 parent 2f547d6 commit 1a3846b
Show file tree
Hide file tree
Showing 7 changed files with 49 additions and 19 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# ChangeLog

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

- Various docs updates

### `llama-index-llms-cleanlab` [0.1.1]

- Add user configurations for Cleanlab LLM integration (#14676)

### `llama-index-readers-file` [0.1.30]

- race between concurrent pptx readers over a single temp filename (#14686)

### `llama-index-tools-exa` [0.1.4]

- changes to Exa search tool getting started and example notebook (#14690)

## [2024-07-10]

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

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

- Various docs updates

### `llama-index-llms-cleanlab` [0.1.1]

- Add user configurations for Cleanlab LLM integration (#14676)

### `llama-index-readers-file` [0.1.30]

- race between concurrent pptx readers over a single temp filename (#14686)

### `llama-index-tools-exa` [0.1.4]

- changes to Exa search tool getting started and example notebook (#14690)

## [2024-07-10]

### `llama-index-core` [0.10.54]
Expand Down
1 change: 1 addition & 0 deletions docs/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ nav:
- ./examples/agent/agent_runner/agent_runner_rag_controllable.ipynb
- ./examples/agent/agent_runner/query_pipeline_agent.ipynb
- ./examples/agent/agentic_rag_using_vertex_ai.ipynb
- ./examples/agent/agentic_rag_with_llamaindex_and_vertexai_managed_index.ipynb
- ./examples/agent/anthropic_agent.ipynb
- ./examples/agent/bedrock_converse_agent.ipynb
- ./examples/agent/coa_agent.ipynb
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.10.54"
__version__ = "0.10.55"

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 @@ -43,7 +43,7 @@ name = "llama-index-core"
packages = [{include = "llama_index"}]
readme = "README.md"
repository = "https://github.com/run-llama/llama_index"
version = "0.10.54"
version = "0.10.55"

[tool.poetry.dependencies]
SQLAlchemy = {extras = ["asyncio"], version = ">=1.4.49"}
Expand Down
27 changes: 12 additions & 15 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 @@ -44,7 +44,7 @@ name = "llama-index"
packages = [{from = "_llama-index", include = "llama_index"}]
readme = "README.md"
repository = "https://github.com/run-llama/llama_index"
version = "0.10.54post1"
version = "0.10.55"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
Expand All @@ -57,7 +57,7 @@ llama-index-agent-openai = ">=0.1.4,<0.3.0"
llama-index-readers-file = "^0.1.4"
llama-index-readers-llama-parse = ">=0.1.2"
llama-index-indices-managed-llama-cloud = ">=0.2.0"
llama-index-core = "0.10.54"
llama-index-core = "0.10.55"
llama-index-multi-modal-llms-openai = "^0.1.3"
llama-index-cli = "^0.1.2"

Expand Down

0 comments on commit 1a3846b

Please sign in to comment.