Skip to content

Commit

Permalink
Logan/verson v0.10.17 (#11720)
Browse files Browse the repository at this point in the history
  • Loading branch information
logan-markewich authored Mar 6, 2024
1 parent f916839 commit 6415dac
Show file tree
Hide file tree
Showing 9 changed files with 57 additions and 23 deletions.
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,39 @@
# ChangeLog

## [2024-03-06]

### `llama-index-cli` [0.1.8]

- Update mappings for `upgrade` command (#11699)

### `llama-index-vector-stores-astra-db` [0.1.4]

- Update wording in warning message (#11702)

### `llama-index-vector-stores-qdrant` [0.1.4]

- Catch RPC errors (#11657)

### `llama-index-vector-stores-opensearch` [0.1.7]

- Avoid calling `nest_asyncio.apply()` in code to avoid confusing errors for users (#11707)

### `llama-index-multi-modal-llms-anthropic` [0.1.2]

- Added support for new multi-modal models `haiku` and `sonnet` (#11656)

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

- Added support for checking if NLTK files are already downloaded (#11676)

### `llama-index-readers-json` [0.1.4]

- Use the metadata passed in when creating documents (#11626)

### `llama-index-packs-finchat` [0.1.0]

- Added a new llama-pack for hierarchical agents + finance chat (#11387)

## [0.10.16] - 2024-03-05

### New Features
Expand Down
2 changes: 1 addition & 1 deletion llama-index-cli/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ maintainers = [
name = "llama-index-cli"
packages = [{include = "llama_index/"}]
readme = "README.md"
version = "0.1.7"
version = "0.1.8"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
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.16"
__version__ = "0.10.17"

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.16"
version = "0.10.17"

[tool.poetry.dependencies]
SQLAlchemy = {extras = ["asyncio"], version = ">=1.4.49"}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ license = "MIT"
maintainers = ["yisding"]
name = "llama-index-readers-json"
readme = "README.md"
version = "0.1.3"
version = "0.1.4"

[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-astra-db"
readme = "README.md"
version = "0.1.3"
version = "0.1.4"

[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-qdrant"
readme = "README.md"
version = "0.1.3"
version = "0.1.4"

[tool.poetry.dependencies]
python = ">=3.9,<4.0"
Expand Down
30 changes: 15 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.16"
version = "0.10.17"

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

Expand Down

0 comments on commit 6415dac

Please sign in to comment.