diff --git a/CHANGELOG.md b/CHANGELOG.md index 2971b016..04ea626d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ [comment]: <> (All notable changes to this project will be documented in this file.) +# 0.16.0 +### Breaking Changes: + +- `scoreDetails` feature is not experimental anymore. You can directly use showRankingScoreDetails during a search without activating the experimental feature + # 0.15.0 ### Breaking Changes: diff --git a/README.md b/README.md index 5dc8152e..55b607f3 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ You can install the **meilisearch** package by adding a few lines into `pubspec. ```yaml dependencies: - meilisearch: ^0.15.0 + meilisearch: ^0.16.0 ``` Then open your terminal and update dart packages. diff --git a/lib/src/version.dart b/lib/src/version.dart index 519bf9f7..7b71c741 100644 --- a/lib/src/version.dart +++ b/lib/src/version.dart @@ -1,5 +1,5 @@ class Version { - static const String current = '0.15.0'; + static const String current = '0.16.0'; static String get qualifiedVersion { return "Meilisearch Dart (v$current)"; diff --git a/pubspec.yaml b/pubspec.yaml index 5dbe7b7b..26dde90f 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: meilisearch description: Meilisearch Dart is the Meilisearch API client for Dart and Flutter developers. -version: 0.15.0 +version: 0.16.0 homepage: https://meilisearch.com repository: https://github.com/meilisearch/meilisearch-dart issue_tracker: https://github.com/meilisearch/meilisearch-dart/issues