From 40913847ba47d435b40b7fac3ae83eba89b56bb9 Mon Sep 17 00:00:00 2001 From: Andrei Fajardo <92402603+nerdai@users.noreply.github.com> Date: Sat, 27 Apr 2024 22:56:58 -0400 Subject: [PATCH] [version] bump version to 0.10.33 (#13138) clog and vbumps --- CHANGELOG.md | 38 +++++++++++++++++++ llama-index-core/llama_index/core/__init__.py | 2 +- llama-index-core/pyproject.toml | 2 +- .../pyproject.toml | 2 +- .../llama-index-tools-google/pyproject.toml | 2 +- pyproject.toml | 2 +- 6 files changed, 43 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e6df64521b80..0deb8eaee3dc1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,43 @@ # ChangeLog +## [2024-04-27] + +### `llama-index-core` [0.10.33] + +- add agent_worker.as_agent() (#13061) + +### `llama-index-embeddings-bedrock` [0.1.5] + +- Use Bedrock cohere character limit (#13126) + +### `llama-index-tools-google` [0.1.5] + +- Change default value for attendees to empty list (#13134) + +### `llama-index-graph-stores-falkordb` [0.1.4] + +- Skip index creation error when index already exists (#13085) + +### `llama-index-tools-google` [0.1.4] + +- Fix datetime for google calendar create_event api (#13132) + +### `llama-index-llms-anthropic` [0.1.11] + +- Merge multiple prompts into one (#13131) + +### `llama-index-indices-managed-llama-cloud` [0.1.6] + +- Use MetadataFilters in LlamaCloud Retriever (#13117) + +### `llama-index-graph-stores-kuzu` [0.1.3] + +- Fix kuzu integration .execute() calls (#13100) + +### `llama-index-vector-stores-lantern` [0.1.3] + +- Maintenance update to keep up to date with lantern builds (#13116) + ## [2024-04-25] ### `llama-index-core` [0.10.32] diff --git a/llama-index-core/llama_index/core/__init__.py b/llama-index-core/llama_index/core/__init__.py index f7c027bf2b3ef..f87a3747971d1 100644 --- a/llama-index-core/llama_index/core/__init__.py +++ b/llama-index-core/llama_index/core/__init__.py @@ -1,6 +1,6 @@ """Init file of LlamaIndex.""" -__version__ = "0.10.32" +__version__ = "0.10.33" import logging from logging import NullHandler diff --git a/llama-index-core/pyproject.toml b/llama-index-core/pyproject.toml index 667e0fe85664a..d3dc8f3155664 100644 --- a/llama-index-core/pyproject.toml +++ b/llama-index-core/pyproject.toml @@ -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.32" +version = "0.10.33" [tool.poetry.dependencies] SQLAlchemy = {extras = ["asyncio"], version = ">=1.4.49"} diff --git a/llama-index-integrations/embeddings/llama-index-embeddings-bedrock/pyproject.toml b/llama-index-integrations/embeddings/llama-index-embeddings-bedrock/pyproject.toml index 36cb104a8c710..07dc7b8f194a7 100644 --- a/llama-index-integrations/embeddings/llama-index-embeddings-bedrock/pyproject.toml +++ b/llama-index-integrations/embeddings/llama-index-embeddings-bedrock/pyproject.toml @@ -27,7 +27,7 @@ exclude = ["**/BUILD"] license = "MIT" name = "llama-index-embeddings-bedrock" readme = "README.md" -version = "0.1.4" +version = "0.1.5" [tool.poetry.dependencies] python = ">=3.8.1,<4.0" diff --git a/llama-index-integrations/tools/llama-index-tools-google/pyproject.toml b/llama-index-integrations/tools/llama-index-tools-google/pyproject.toml index dc4084a2375ce..3dd8796af7100 100644 --- a/llama-index-integrations/tools/llama-index-tools-google/pyproject.toml +++ b/llama-index-integrations/tools/llama-index-tools-google/pyproject.toml @@ -31,7 +31,7 @@ license = "MIT" maintainers = ["ajhofmann"] name = "llama-index-tools-google" readme = "README.md" -version = "0.1.4" +version = "0.1.5" [tool.poetry.dependencies] python = ">=3.8.1,<4.0" diff --git a/pyproject.toml b/pyproject.toml index 8fd38c4b7593f..86b60e8cd04ff 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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.32" +version = "0.10.33" [tool.poetry.dependencies] python = ">=3.8.1,<4.0"