Skip to content

Commit

Permalink
Bump to 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tomusher committed Jun 20, 2024
1 parent 5cc1e0b commit 7498dfe
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.10.0] - 2024-06-20

- Add LiteLLM support by @tomusher in https://github.com/wagtail/wagtail-vector-index/pull/64
- Refactor vector indexes in to single type by @tomusher in https://github.com/wagtail/wagtail-vector-index/pull/65
- Docs: Update 'Indexing across models' example to include all necessary steps by @ababic in https://github.com/wagtail/wagtail-vector-index/pull/70
- Resolved bug in index.query() that prevented content from similar documents to be included i then LLM query by @berry in https://github.com/wagtail/wagtail-vector-index/pull/69


## [0.9.0] - 2024-03-26

### Added
Expand Down
2 changes: 1 addition & 1 deletion src/wagtail_vector_index/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
default_app_config = "wagtail_vector_index.apps.WagtailVectorIndexAppConfig"


VERSION = (0, 9, 0)
VERSION = (0, 10, 0)
__version__ = ".".join(map(str, VERSION))

0 comments on commit 7498dfe

Please sign in to comment.