Skip to content

Commit

Permalink
Merge #432
Browse files Browse the repository at this point in the history
432: Update version for the next release (v0.23.0) r=bidoubiwa a=meili-bot

This version introduces features released on Meilisearch v1.1.0 🎉
Check out the changelog of [Meilisearch v1.1.0](https://github.com/meilisearch/meilisearch/releases/tag/v1.1.0) for more information on the changes.

### 🚀 Enhancements

- Add a new optional argument to `add_documents_csv`. This argument allows you to customize the separator character in your `csv` file. (#429) `@brunoocasali.`
- Add `client.multi_search()` method to execute multiple search requests simultaneously with different configurations. (#430) `@brunoocasali`
    Usage example:

    ```ruby
    client.multi_search([
      { index_uid: 'books', q: 'prince' },
      { index_uid: 'movies', q: 'prince' },
    ])
    ```
  ⚠️ The `SearchQuery` was not meant to be used if the regular `$index->search()` requests (yet).

Co-authored-by: meili-bot <74670311+meili-bot@users.noreply.github.com>
Co-authored-by: cvermand <33010418+bidoubiwa@users.noreply.github.com>
  • Loading branch information
3 people committed Apr 3, 2023
2 parents 2bb24e2 + 660a315 commit 40c6a1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/meilisearch/version.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true

module MeiliSearch
VERSION = '0.22.0'
VERSION = '0.23.0'

def self.qualified_version
"Meilisearch Ruby (v#{VERSION})"
Expand Down

0 comments on commit 40c6a1f

Please sign in to comment.