Skip to content

Commit ae36958

Browse files
committed
chore: prepare next release 0.2.2
1 parent 53d750e commit ae36958

File tree

6 files changed

+19
-5
lines changed

6 files changed

+19
-5
lines changed

helper_dart/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 0.2.2
2+
3+
## Fix
4+
5+
- Allow same search query to be executed (#48)
6+
- Highlighting of strings with non-alphanumeric characters (#46)
7+
18
# 0.2.1
29

310
## Fix

helper_dart/lib/src/hits_searcher.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ class _HitsSearcher with DisposableMixin implements HitsSearcher {
174174
final service = AlgoliaSearchService(
175175
applicationID: applicationID,
176176
apiKey: apiKey,
177-
extraUserAgents: ['algolia-helper-dart (0.2.1)'],
177+
extraUserAgents: ['algolia-helper-dart (0.2.2)'],
178178
disjunctiveFacetingEnabled: disjunctiveFacetingEnabled,
179179
);
180180
return _HitsSearcher.create(service, state, debounce);

helper_dart/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: algolia_helper
22
description: Patterns and APIs to implement advanced search features with Algolia
3-
version: 0.2.1
3+
version: 0.2.2
44
repository: https://github.com/algolia/algoliasearch-helper-flutter/tree/main/helper_dart
55

66
environment:

helper_flutter/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 0.2.2
2+
3+
## Fix
4+
5+
- Allow same search query to be executed (#48)
6+
- Highlighting of strings with non-alphanumeric characters (#46)
7+
18
# 0.2.1
29

310
## Fix

helper_flutter/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ packages:
1414
name: algolia_helper
1515
url: "https://pub.dartlang.org"
1616
source: hosted
17-
version: "0.2.0"
17+
version: "0.2.2"
1818
async:
1919
dependency: transitive
2020
description:

helper_flutter/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: algolia_helper_flutter
22
description: Patterns and APIs to implement advanced search features with Algolia for Flutter
3-
version: 0.2.1
3+
version: 0.2.2
44
homepage: https://www.algolia.com/doc/guides/building-search-ui/what-is-instantsearch/flutter/
55
repository: https://github.com/algolia/algoliasearch-helper-flutter/tree/main/helper_flutter
66

@@ -9,7 +9,7 @@ environment:
99
flutter: ">=1.17.0"
1010

1111
dependencies:
12-
algolia_helper: ^0.2.1
12+
algolia_helper: ^0.2.2
1313
flutter:
1414
sdk: flutter
1515

0 commit comments

Comments
 (0)