Skip to content

Commit d51d9b0

Browse files
authored
Merge pull request #234 from meilisearch/release-v0.6.1
Release v0.6.1
2 parents 19059cf + fe94842 commit d51d9b0

File tree

7 files changed

+10
-6
lines changed

7 files changed

+10
-6
lines changed

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
image: dart:${{ matrix.version }}
2626
services:
2727
meilisearch:
28-
image: getmeili/meilisearch:latest
28+
image: getmeili/meilisearch:v0.29.3
2929
env:
3030
MEILI_MASTER_KEY: "masterKey"
3131
MEILI_NO_ANALYTICS: "true"

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.6.1
2+
### Changes
3+
- Add support to `matchingStrategy` in the search `MeiliSearchIndex#search`.
4+
15
# 0.6.0
26
This version makes this package compatible with Meilisearch v0.28.0 and newer
37
### Breaking changes

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.6.0
51+
meilisearch: ^0.6.1
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.6.0"
38+
version: "0.6.1"
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.6.0"
9+
meilisearch: "0.6.1"
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.6.0';
2+
static const String current = '0.6.1';
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.6.0
3+
version: 0.6.1
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)