diff --git a/CHANGELOG.md b/CHANGELOG.md index 04ea626..0a56a81 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ [comment]: <> (All notable changes to this project will be documented in this file.) +# 0.17 +### Breaking Changes: + # 0.16.0 ### Breaking Changes: diff --git a/README.md b/README.md index d57212f..d16b20b 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ You can install the **meilisearch** package by adding a few lines into `pubspec. ```yaml dependencies: - meilisearch: ^0.16.0 + meilisearch: ^0.17.0 ``` Then open your terminal and update dart packages. diff --git a/lib/src/version.dart b/lib/src/version.dart index 7b71c741..ba2cfab 100644 --- a/lib/src/version.dart +++ b/lib/src/version.dart @@ -1,5 +1,5 @@ class Version { - static const String current = '0.16.0'; + static const String current = '0.17.0'; static String get qualifiedVersion { return "Meilisearch Dart (v$current)"; diff --git a/pubspec.yaml b/pubspec.yaml index a306f7c..8138168 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.16.0 +version: 0.17.0 homepage: https://meilisearch.com repository: https://github.com/meilisearch/meilisearch-dart issue_tracker: https://github.com/meilisearch/meilisearch-dart/issues