Skip to content

Commit 0e1063d

Browse files
bors[bot]meili-botbrunoocasali
authored
Merge #285
285: Update version for the next release (v0.10.2) r=brunoocasali a=meili-bot _This PR is auto-generated._ The automated script updates the version of meilisearch-dart to a new version: "v0.10.2" Co-authored-by: meili-bot <74670311+meili-bot@users.noreply.github.com> Co-authored-by: Bruno Casali <brunoocasali@gmail.com>
2 parents e1d16a7 + bd36ed2 commit 0e1063d

File tree

6 files changed

+11
-5
lines changed

6 files changed

+11
-5
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
[comment]: <> (All notable changes to this project will be documented in this file.)
22

3+
# 0.10.2
4+
### Changes:
5+
6+
- Introduce `MultiSearchQuery` class to handle search requests.
7+
- Add `Future<MultiSearchResult> multiSearch(MultiSearchQuery requests);` to `MeiliSearchClient`.
8+
39
# 0.10.1
410
### Bug Fixes:
511

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ You can install the **meilisearch** package by adding a few lines into `pubspec.
4848

4949
```yaml
5050
dependencies:
51-
meilisearch: ^0.10.1
51+
meilisearch: ^0.10.2
5252
```
5353
5454
Then open your terminal and update dart packages.

example/pubspec.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ packages:
3535
path: ".."
3636
relative: true
3737
source: path
38-
version: "0.10.1"
38+
version: "0.10.2"
3939
path:
4040
dependency: transitive
4141
description:

example/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ environment:
66
sdk: ">=2.12.0 <3.0.0"
77

88
dependencies:
9-
meilisearch: "0.10.1"
9+
meilisearch: "0.10.2"
1010

1111
dependency_overrides:
1212
meilisearch:

lib/src/version.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
class Version {
2-
static const String current = '0.10.1';
2+
static const String current = '0.10.2';
33

44
static String get qualifiedVersion {
55
return "Meilisearch Dart (v$current)";

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: meilisearch
22
description: Meilisearch Dart is the Meilisearch API client for Dart and Flutter developers.
3-
version: 0.10.1
3+
version: 0.10.2
44
homepage: https://meilisearch.com
55
repository: https://github.com/meilisearch/meilisearch-dart
66
issue_tracker: https://github.com/meilisearch/meilisearch-dart/issues

0 commit comments

Comments
 (0)