Skip to content

Commit

Permalink
[version] bump version to 0.10.54 (#14681)
Browse files Browse the repository at this point in the history
  • Loading branch information
nerdai authored Jul 10, 2024
1 parent 262302b commit 76af17a
Show file tree
Hide file tree
Showing 9 changed files with 79 additions and 6 deletions.
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,36 @@
# ChangeLog

## [2024-07-10]

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

- fix: update operator logic for simple vector store filter (#14674)
- Add AgentOps integration (#13935)

### `llama-index-embeddings-fastembed` [0.1.5]

- chore: update required python version in Qdrant fastembed package (#14677)

### `llama-index-embeddings-huggingface-optimum-intel` [0.1.6]

- Bump version llama-index-embeddings-huggingface-optimum-intel (#14670)

### `llama-index-vector-stores-elasticsearch` [0.2.2]

- Added support for custom index settings (#14655)

### `llama-index-callbacks-agentops` [0.1.0]

- Initial release

### `llama-index-indices-managed-vertexai` [0.0.2]

- Fix #14637 Llamaindex managed Vertex AI index needs to be updated. (#14641)

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

- fix unstructured import in simple file reader (#14642)

## [2024-07-08]

### `llama-index-core` [0.10.53]
Expand Down
38 changes: 37 additions & 1 deletion docs/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,36 @@
# ChangeLog

## [2024-07-10]

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

- fix: update operator logic for simple vector store filter (#14674)
- Add AgentOps integration (#13935)

### `llama-index-embeddings-fastembed` [0.1.5]

- chore: update required python version in Qdrant fastembed package (#14677)

### `llama-index-embeddings-huggingface-optimum-intel` [0.1.6]

- Bump version llama-index-embeddings-huggingface-optimum-intel (#14670)

### `llama-index-vector-stores-elasticsearch` [0.2.2]

- Added support for custom index settings (#14655)

### `llama-index-callbacks-agentops` [0.1.0]

- Initial release

### `llama-index-indices-managed-vertexai` [0.0.2]

- Fix #14637 Llamaindex managed Vertex AI index needs to be updated. (#14641)

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

- fix unstructured import in simple file reader (#14642)

## [2024-07-08]

### `llama-index-core` [0.10.53]
Expand All @@ -13,11 +44,16 @@
- add cloud document converter (#14608)
- fix KnowledgeGraphIndex arg 'kg_triple_extract_template' typo error (#14619)
- Fix: Update `UnstructuredElementNodeParser` due to change in unstructured (#14606)
- Update ReAct Step to solve issue with incomplete generation (#14587)

### `llama-index-callbacks-promptlayer` [0.1.3]

- Conditions logging to promptlayer on successful request (#14632)

### `llama-index-embeddings-databricks` [0.1.0]

- Add integration embeddings databricks (#14590)

### `llama-index-llms-ai21` [0.3.1]

- Fix MessageRole import from the wrong package in AI21 Package (#14596)
Expand All @@ -29,7 +65,7 @@

### `llama-index-llms-bedrock-converse` [0.1.4]

- Fix Bedrock Converse's tool use blocks, when there are multiple consecutive function calls (#14386)
- Fix Bedrock Converse's tool use blocks, when there are multiple consecutive function calls (#14386)

### `llama-index-llms-optimum-intel` [0.1.0]

Expand Down
4 changes: 4 additions & 0 deletions docs/docs/api_reference/callbacks/agentops.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
::: llama_index.callbacks.agentops
options:
members:
- AgentOpsEventHandler
2 changes: 2 additions & 0 deletions docs/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -748,6 +748,7 @@ nav:
- ./api_reference/agent/openai_legacy.md
- ./api_reference/agent/react.md
- Callbacks:
- ./api_reference/callbacks/agentops.md
- ./api_reference/callbacks/aim.md
- ./api_reference/callbacks/argilla.md
- ./api_reference/callbacks/arize_phoenix.md
Expand Down Expand Up @@ -2044,6 +2045,7 @@ plugins:
- ../llama-index-integrations/embeddings/llama-index-embeddings-databricks
- ../llama-index-integrations/llms/llama-index-llms-optimum-intel
- ../llama-index-integrations/llms/llama-index-llms-qianfan
- ../llama-index-integrations/callbacks/llama-index-callbacks-agentops
- redirects:
redirect_maps:
./api/llama_index.vector_stores.MongoDBAtlasVectorSearch.html: api_reference/storage/vector_store/mongodb.md
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.53"
__version__ = "0.10.54"

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.53"
version = "0.10.54"

[tool.poetry.dependencies]
SQLAlchemy = {extras = ["asyncio"], version = ">=1.4.49"}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ exclude = ["**/BUILD"]
license = "MIT"
name = "llama-index-embeddings-fastembed"
readme = "README.md"
version = "0.1.4"
version = "0.1.5"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ exclude = ["**/BUILD"]
license = "MIT"
name = "llama-index-vector-stores-elasticsearch"
readme = "README.md"
version = "0.2.1"
version = "0.2.2"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
Expand Down
2 changes: 1 addition & 1 deletion 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.53"
version = "0.10.54"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
Expand Down

0 comments on commit 76af17a

Please sign in to comment.