Skip to content

Commit 420c28a

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

File tree

6 files changed

+8
-5
lines changed

6 files changed

+8
-5
lines changed

CHANGELOG.md

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

3+
# 0.9.1
4+
- [web] Fix a bug that affected the web platform regarding the override of `User-Agent`. Now the header used to send the client name information is the `X-Meilisearch-Client` one.
5+
36
# 0.9.0
47
### Breaking Changes:
58

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